Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-resolve-script: use "git-apply --stat" instead of diffstat
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Tue, 31 May 2005 00:45:41 +0000
(17:45 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Tue, 31 May 2005 00:45:41 +0000
(17:45 -0700)
Not everybody necessarily even has diffstat installed.
git-resolve-script
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
53d4b46
)
diff --git
a/git-resolve-script
b/git-resolve-script
index 5f1a748cede943a269c6ddf8f38dbcbe0aa8723d..b7ccc201145e543c493df79cccd2a6c9aa03e210 100644
(file)
--- a/
git-resolve-script
+++ b/
git-resolve-script
@@
-41,7
+41,7
@@
if [ "$common" == "$head" ]; then
sleep 3
git-read-tree -m $merge && git-checkout-cache -f -u -a
echo $merge > "$GIT_DIR"/HEAD
- git-diff-tree -p ORIG_HEAD HEAD |
diffstat -p1
+ git-diff-tree -p ORIG_HEAD HEAD |
git-apply --stat
exit 0
fi
echo "Trying to merge $merge into $head"
@@
-58,4
+58,4
@@
result_commit=$(echo "$merge_msg" | git-commit-tree $result_tree -p $head -p $me
echo "Committed merge $result_commit"
echo $result_commit > "$GIT_DIR"/HEAD
git-checkout-cache -f -u -a
-git-diff-tree -p ORIG_HEAD HEAD |
diffstat -p1
+git-diff-tree -p ORIG_HEAD HEAD |
git-apply --stat