aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-log.txt
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2007-06-16 21:03:38 +0200
committerJunio C Hamano <gitster@pobox.com>2007-06-16 13:10:52 -0700
commit2e88c266261489a16708ba5ee0ddfbabcb17e3a4 (patch)
tree6d352711627981ddf7b799661de75f84874c6fb4 /Documentation/git-log.txt
parent13120fdc5ea8a8651850845f3ea320914f85056e (diff)
downloadgit-2e88c266261489a16708ba5ee0ddfbabcb17e3a4.tar.gz
Document git log --full-diff
Based on description of commit 477f2b41310c4b1040a9e7f72720b9c39d82caf9 "git log --full-diff" adding this option. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-log.txt')
-rw-r--r--Documentation/git-log.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt
index c072441bc8..7adcdefacf 100644
--- a/Documentation/git-log.txt
+++ b/Documentation/git-log.txt
@@ -54,6 +54,13 @@ include::pretty-options.txt[]
--decorate::
Print out the ref names of any commits that are shown.
+--full-diff::
+ Without this flag, "git log -p <paths>..." shows commits that
+ touch the specified paths, and diffs about the same specified
+ paths. With this, the full diff is shown for commits that touch
+ the specified paths; this means that "<paths>..." limits only
+ commits, and doesn't limit diff for those commits.
+
<paths>...::
Show only commits that affect the specified paths.