From: Linus Torvalds Date: Wed, 8 Jun 2005 23:35:30 +0000 (-0700) Subject: Make sure we error out if we can't remove a file on automatic merges. X-Git-Tag: v0.99~300^2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ae3858e7e9146208f1608445975e2761c9b0482e;hp=17ebe977d72290dcdc848b78ae2e65b59d4e1b4c;p=git.git Make sure we error out if we can't remove a file on automatic merges. Pointed out by Junio. --- diff --git a/git-merge-one-file-script b/git-merge-one-file-script index cf42ff63..787ac446 100755 --- a/git-merge-one-file-script +++ b/git-merge-one-file-script @@ -21,13 +21,14 @@ case "${1:-.}${2:-.}${3:-.}" in "$1..") echo "WARNING: $4 is removed in both branches." echo "WARNING: This is a potential rename conflict." + rm -f -- "$4" || exit 1 exec git-update-cache --remove -- "$4" ;; # # Deleted in one and unchanged in the other. # "$1.." | "$1.$1" | "$1$1.") echo "Removing $4" - rm -f -- "$4" + rm -f -- "$4" || exit 1 exec git-update-cache --remove -- "$4" ;; # # Added in one.