From 4139dd4fa23ad06a178ba4743213d74506d1ec9f Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Mon, 9 Jul 2018 22:23:46 -0600 Subject: [PATCH] doc: link to libgit2 ticket for git_log The libgit2 walker is close to git-log in simple cases, but it does not work quite the same way. For example, I've found that it does not return the same number of commits compared to running "git log ref1..ref2". --- docs/recipes/git-log.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/recipes/git-log.rst b/docs/recipes/git-log.rst index df645a6e6..3933218af 100644 --- a/docs/recipes/git-log.rst +++ b/docs/recipes/git-log.rst @@ -40,4 +40,8 @@ References - git-log_. +- `libgit2 discussion about walker behavior + `_. Note that the libgit2's + walker functions differently than ``git-log`` in some ways. + .. _git-log: https://www.kernel.org/pub/software/scm/git/docs/git-log.html