projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef0bfa2
)
Fix typo in git-checkout-script.
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 22 Jun 2005 00:12:38 +0000
(17:12 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 22 Jun 2005 00:12:38 +0000
(17:12 -0700)
The confusion between "revs" vs "refs" caused us to not find the branch
name, which in turn meant that we never switched the HEAD over to it.
git-checkout-script
patch
|
blob
|
history
diff --git
a/git-checkout-script
b/git-checkout-script
index
870b1a3
..
4b3ae4a
100755
(executable)
--- a/
git-checkout-script
+++ b/
git-checkout-script
@@
-22,7
+22,7
@@
while [ "$#" != "0" ]; do
exit 1
fi
new="$rev"
- if [ -f "$GIT_DIR/re
v
s/heads/$arg" ]; then
+ if [ -f "$GIT_DIR/re
f
s/heads/$arg" ]; then
branch="$arg"
fi
;;