From 60ea0fdd7de001405fcc7591beb18a66a1f0dd09 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sat, 16 Jul 2005 10:27:19 -0700 Subject: [PATCH] Fix git-fetch-script breakage It had the test for the destination reversed. --- git-fetch-script | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git-fetch-script b/git-fetch-script index fce43e6d..ab3b6f92 100755 --- a/git-fetch-script +++ b/git-fetch-script @@ -29,6 +29,8 @@ git-rev-parse --verify "$head" > /dev/null || exit 1 case "$merge_store" in '') + ;; +*) echo "$head" > "$GIT_DIR/$merge_store" esac && -- 2.11.0