summaryrefslogtreecommitdiff
path: root/contrib/examples
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2013-12-12 14:18:33 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-12-12 14:18:34 -0800
commit577aed296a8d6dbc0747982c0a7d14bf543c67fa (patch)
treeb6fc45e7978010be15f34646dacb7cac1bd2fbe5 /contrib/examples
parentMerge branch 'tr/commit-slab-cleanup' (diff)
parentSync with 1.8.5 (diff)
downloadtgif-577aed296a8d6dbc0747982c0a7d14bf543c67fa.tar.xz
Merge branch 'jk/remove-deprecated'
* jk/remove-deprecated: stop installing git-tar-tree link peek-remote: remove deprecated alias of ls-remote lost-found: remove deprecated command tar-tree: remove deprecated command repo-config: remove deprecated alias for "git config"
Diffstat (limited to 'contrib/examples')
-rwxr-xr-xcontrib/examples/git-whatchanged.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/examples/git-whatchanged.sh b/contrib/examples/git-whatchanged.sh
index 1fb9feb348..2edbdc6d99 100755
--- a/contrib/examples/git-whatchanged.sh
+++ b/contrib/examples/git-whatchanged.sh
@@ -9,12 +9,12 @@ case "$0" in
*whatchanged)
count=
test -z "$diff_tree_flags" &&
- diff_tree_flags=$(git-repo-config --get whatchanged.difftree)
+ diff_tree_flags=$(git config --get whatchanged.difftree)
diff_tree_default_flags='-c -M --abbrev' ;;
*show)
count=-n1
test -z "$diff_tree_flags" &&
- diff_tree_flags=$(git-repo-config --get show.difftree)
+ diff_tree_flags=$(git config --get show.difftree)
diff_tree_default_flags='--cc --always' ;;
esac
test -z "$diff_tree_flags" &&