projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98e031f
)
Fix git-fetch-script breakage
author
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 16 Jul 2005 17:27:19 +0000
(10:27 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 16 Jul 2005 17:27:19 +0000
(10:27 -0700)
It had the test for the destination reversed.
git-fetch-script
patch
|
blob
|
history
diff --git
a/git-fetch-script
b/git-fetch-script
index
fce43e6
..
ab3b6f9
100755
(executable)
--- 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 &&