diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-12 05:02:25 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-12 05:02:25 -0800 |
commit | c611db196a8830135e1a03e5b4fa6502714ded24 (patch) | |
tree | 696f6a3ab5fc4afae7f301ff10526a5e4b8c1278 /git-whatchanged.sh | |
parent | Avoid using "git-var -l" until it gets fixed. (diff) | |
parent | diff-tree: do not default to -c (diff) | |
download | tgif-c611db196a8830135e1a03e5b4fa6502714ded24.tar.xz |
Merge branch 'jc/fixdiff'
* jc/fixdiff:
diff-tree: do not default to -c
Diffstat (limited to 'git-whatchanged.sh')
-rwxr-xr-x | git-whatchanged.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-whatchanged.sh b/git-whatchanged.sh index 574fc3558e..1fb9feb348 100755 --- a/git-whatchanged.sh +++ b/git-whatchanged.sh @@ -10,7 +10,7 @@ case "$0" in count= test -z "$diff_tree_flags" && diff_tree_flags=$(git-repo-config --get whatchanged.difftree) - diff_tree_default_flags='-M --abbrev' ;; + diff_tree_default_flags='-c -M --abbrev' ;; *show) count=-n1 test -z "$diff_tree_flags" && |