diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-01 23:14:58 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-01 23:15:09 -0700 |
commit | 7b763f7c6536f40090b06c79896a147ba97b0b03 (patch) | |
tree | a96d7f515200dec3fece56d6230744ffa81772ac /git-whatchanged.sh | |
parent | 746437d534a1fa84e210427a94972ed0c7f34ee5 (diff) | |
download | git-7b763f7c6536f40090b06c79896a147ba97b0b03.tar.gz git-7b763f7c6536f40090b06c79896a147ba97b0b03.tar.xz |
builtin-log/whatchanged/show: make them official.
Remove the shell script version, and hardlink the git binary to
them.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-whatchanged.sh')
-rwxr-xr-x | git-whatchanged.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/git-whatchanged.sh b/git-whatchanged.sh deleted file mode 100755 index 1fb9feb34..000000000 --- a/git-whatchanged.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -USAGE='[-p] [--max-count=<n>] [<since>..<limit>] [--pretty=<format>] [-m] [git-diff-tree options] [git-rev-list options]' -SUBDIRECTORY_OK='Yes' -. git-sh-setup - -diff_tree_flags=$(git-rev-parse --sq --no-revs --flags "$@") || exit -case "$0" in -*whatchanged) - count= - test -z "$diff_tree_flags" && - diff_tree_flags=$(git-repo-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_default_flags='--cc --always' ;; -esac -test -z "$diff_tree_flags" && - diff_tree_flags="$diff_tree_default_flags" - -rev_list_args=$(git-rev-parse --sq --default HEAD --revs-only "$@") && -diff_tree_args=$(git-rev-parse --sq --no-revs --no-flags "$@") && - -eval "git-rev-list $count $rev_list_args" | -eval "git-diff-tree --stdin --pretty -r $diff_tree_flags $diff_tree_args" | -LESS="$LESS -S" ${PAGER:-less} |