diff options
author | 2006-06-24 01:06:51 -0700 | |
---|---|---|
committer | 2006-06-24 01:06:51 -0700 | |
commit | bc1f262d67cbe1c736c5dca911f6f085f47ac9bb (patch) | |
tree | 09d2fd4312b16cb841238edd2b5ad3a10b6f5263 /git-merge.sh | |
parent | Makefile: do not recompile main programs when libraries have changed. (diff) | |
parent | usage: minimum type fix. (diff) | |
download | tgif-bc1f262d67cbe1c736c5dca911f6f085f47ac9bb.tar.xz |
Merge branch 'pb/error'
* pb/error:
usage: minimum type fix.
Customizable error handlers
git-merge: Don't use -p when outputting summary
git-commit: allow -e option anywhere on command line
patch-id: take "commit" prefix as well as "diff-tree" prefix
Diffstat (limited to 'git-merge.sh')
-rwxr-xr-x | git-merge.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-merge.sh b/git-merge.sh index af1f25b3c5..da5657eb40 100755 --- a/git-merge.sh +++ b/git-merge.sh @@ -55,7 +55,7 @@ finish () { case "$no_summary" in '') - git-diff-tree -p --stat --summary -M "$head" "$1" + git-diff-tree --stat --summary -M "$head" "$1" ;; esac } |