git-resolve-script: use "git-apply --stat" instead of diffstat

Not everybody necessarily even has diffstat installed.
This commit is contained in:
Linus Torvalds 2005-05-30 17:45:41 -07:00
parent 53d4b46085
commit 866b973b5d

View File

@ -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