summaryrefslogtreecommitdiff
path: root/git-merge-one-file.sh
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2005-11-30 05:06:10 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-11-30 08:14:19 (GMT)
commit354b9b59b0a02ce7e32a7b0c10caaa1e3532f22b (patch)
tree4c052b89be821bc8fc6366501ee0583432849e86 /git-merge-one-file.sh
parent10637b84d91cf8870d1db8609a10dc5e58722378 (diff)
downloadgit-354b9b59b0a02ce7e32a7b0c10caaa1e3532f22b.zip
git-354b9b59b0a02ce7e32a7b0c10caaa1e3532f22b.tar.gz
git-354b9b59b0a02ce7e32a7b0c10caaa1e3532f22b.tar.bz2
merge-one-file: leave unmerged index entries upon automerge failure.
When automerge fails, we used to collapse the path to stage0 from "our" branch, to help "diff-files" users to view the half-merged state against the current HEAD. Now diff-files has been taught how to compare with unmerged stage2,leaving them unmerged is a better thing to do, especially this prevents the unresolved conflicts to be committed by mistake. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-merge-one-file.sh')
-rwxr-xr-xgit-merge-one-file.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/git-merge-one-file.sh b/git-merge-one-file.sh
index c3eca8b..739a072 100755
--- a/git-merge-one-file.sh
+++ b/git-merge-one-file.sh
@@ -79,11 +79,7 @@ case "${1:-.}${2:-.}${3:-.}" in
;;
esac
- # We reset the index to the first branch, making
- # git-diff-file useful
- git-update-index --add --cacheinfo "$6" "$2" "$4"
- git-checkout-index -u -f -- "$4" &&
- merge "$4" "$orig" "$src2"
+ merge "$4" "$orig" "$src2"
ret=$?
rm -f -- "$orig" "$src2"