diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-27 15:55:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-29 11:17:43 -0700 |
commit | 367cec1c024c3849cb32eaac15884a4adfefe1de (patch) | |
tree | ff5ff9663406484cfac8d6dee415971e62eba8ef /diff.h | |
parent | be020332a152ef95e0e8435fb69d8c02d5da29bb (diff) | |
download | git-367cec1c024c3849cb32eaac15884a4adfefe1de.tar.gz |
[PATCH] Add --pickaxe-all to diff-* brothers.
When --pickaxe-all is given in addition to -S, pickaxe shows the
entire diffs contained in the changeset, not just the diffs for
the filepair that touched the sought-after string. This is
useful to see the changes in context.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -36,7 +36,9 @@ extern void diff_setup(int flags); extern void diffcore_rename(int rename_copy, int minimum_score); -extern void diffcore_pickaxe(const char *needle); +#define DIFF_PICKAXE_ALL 1 +extern void diffcore_pickaxe(const char *needle, int opts); + extern void diffcore_pathspec(const char **pathspec); extern int diff_queue_is_empty(void); |