]> git.ipfire.org Git - thirdparty/git.git/blame - git-checkout.sh
GIT v1.5.0-rc3
[thirdparty/git.git] / git-checkout.sh
CommitLineData
303e5f4c 1#!/bin/sh
b33e9666 2
1be0659e 3USAGE='[-f] [-b <new_branch>] [-m] [<branch>] [<paths>...]'
104f3e03 4SUBDIRECTORY_OK=Sometimes
806f36d4 5. git-sh-setup
7eff28a9 6require_work_tree
b0bafe03 7
969d326d 8old_name=HEAD
5a03e7f2 9old=$(git-rev-parse --verify $old_name 2>/dev/null)
64886104 10oldbranch=$(git-symbolic-ref $old_name 2>/dev/null)
e8b11749 11new=
969d326d 12new_name=
a79944d7 13force=
e8b11749 14branch=
91dcdfd3 15newbranch=
969d326d 16newbranch_log=
1be0659e 17merge=
ead80606
JH
18LF='
19'
e8b11749
LT
20while [ "$#" != "0" ]; do
21 arg="$1"
22 shift
23 case "$arg" in
91dcdfd3
LT
24 "-b")
25 newbranch="$1"
26 shift
27 [ -z "$newbranch" ] &&
28 die "git checkout: -b needs a branch name"
305e22c3 29 git-show-ref --verify --quiet -- "refs/heads/$newbranch" &&
91dcdfd3 30 die "git checkout: branch $newbranch already exists"
03feddd6 31 git-check-ref-format "heads/$newbranch" ||
babfaf8d 32 die "git checkout: we do not like '$newbranch' as a branch name."
91dcdfd3 33 ;;
969d326d
SP
34 "-l")
35 newbranch_log=1
36 ;;
303e5f4c 37 "-f")
e8b11749 38 force=1
303e5f4c 39 ;;
1be0659e
JH
40 -m)
41 merge=1
42 ;;
4aaa7027
JH
43 --)
44 break
45 ;;
b0bafe03
CS
46 -*)
47 usage
48 ;;
303e5f4c 49 *)
4aaa7027
JH
50 if rev=$(git-rev-parse --verify "$arg^0" 2>/dev/null)
51 then
52 if [ -z "$rev" ]; then
53 echo "unknown flag $arg"
54 exit 1
55 fi
56 new="$rev"
8d78b5af 57 new_name="$arg"
305e22c3
LT
58 if git-show-ref --verify --quiet -- "refs/heads/$arg"
59 then
4aaa7027
JH
60 branch="$arg"
61 fi
62 elif rev=$(git-rev-parse --verify "$arg^{tree}" 2>/dev/null)
63 then
64 # checking out selected paths from a tree-ish.
65 new="$rev"
969d326d 66 new_name="$arg^{tree}"
4aaa7027
JH
67 branch=
68 else
69 new=
969d326d 70 new_name=
4aaa7027
JH
71 branch=
72 set x "$arg" "$@"
73 shift
e8b11749 74 fi
2608003f
JH
75 case "$1" in
76 --)
77 shift ;;
78 esac
4aaa7027 79 break
e8b11749 80 ;;
303e5f4c 81 esac
303e5f4c
LT
82done
83
897643cc
JH
84case "$force$merge" in
8511)
86 die "git checkout: -f and -m are incompatible"
87esac
88
4aaa7027
JH
89# The behaviour of the command with and without explicit path
90# parameters is quite different.
91#
92# Without paths, we are checking out everything in the work tree,
93# possibly switching branches. This is the traditional behaviour.
91dcdfd3 94#
4aaa7027
JH
95# With paths, we are _never_ switching branch, but checking out
96# the named paths from either index (when no rev is given),
97# or the named tree-ish (when rev is given).
98
99if test "$#" -ge 1
100then
babfaf8d
JW
101 hint=
102 if test "$#" -eq 1
103 then
104 hint="
105Did you intend to checkout '$@' which can not be resolved as commit?"
106 fi
1be0659e 107 if test '' != "$newbranch$force$merge"
4aaa7027 108 then
babfaf8d 109 die "git checkout: updating paths is incompatible with switching branches/forcing$hint"
4aaa7027
JH
110 fi
111 if test '' != "$new"
112 then
113 # from a specific tree-ish; note that this is for
114 # rescuing paths and is never meant to remove what
115 # is not in the named tree-ish.
d0d14cf3 116 git-ls-tree --full-name -r "$new" "$@" |
4aaa7027
JH
117 git-update-index --index-info || exit $?
118 fi
bf7e1472
JH
119
120 # Make sure the request is about existing paths.
121 git-ls-files --error-unmatch -- "$@" >/dev/null || exit
122 git-ls-files -- "$@" |
123 git-checkout-index -f -u --stdin
4aaa7027
JH
124 exit $?
125else
126 # Make sure we did not fall back on $arg^{tree} codepath
127 # since we are not checking out from an arbitrary tree-ish,
128 # but switching branches.
129 if test '' != "$new"
130 then
131 git-rev-parse --verify "$new^{commit}" >/dev/null 2>&1 ||
132 die "Cannot switch branch to a non-commit."
133 fi
134fi
135
104f3e03
JH
136# We are switching branches and checking out trees, so
137# we *NEED* to be at the toplevel.
514c09fd 138cd_to_toplevel
104f3e03 139
969d326d 140[ -z "$new" ] && new=$old && new_name="$old_name"
4aaa7027 141
73c838e4 142# If we don't have an existing branch that we're switching to,
91dcdfd3 143# and we don't have a new branch name for the target we
73c838e4
JH
144# are switching to, then we are detaching our HEAD from any
145# branch. However, if "git checkout HEAD" detaches the HEAD
146# from the current branch, even though that may be logically
147# correct, it feels somewhat funny. More importantly, we do not
148# want "git checkout" nor "git checkout -f" to detach HEAD.
4aaa7027 149
bfbbb8f8
JH
150detached=
151detach_warn=
152
c847f537
JH
153if test -z "$branch$newbranch" && test "$new" != "$old"
154then
bfbbb8f8 155 detached="$new"
64886104
JH
156 if test -n "$oldbranch"
157 then
d117452a
NP
158 detach_warn="Note: you are not on ANY branch anymore.
159If you want to create a new branch from this checkout, you may do so
160(now or later) by using -b with the checkout command again. Example:
eb3204df 161 git checkout -b <new_branch_name>"
64886104 162 fi
ead80606
JH
163elif test -z "$oldbranch" && test -n "$branch"
164then
165 # Coming back...
166 if test -z "$force"
167 then
75b364df 168 git show-ref -d -s | grep "$old" >/dev/null || {
ead80606 169 echo >&2 \
75b364df
JH
170"You are not on any branch and switching to branch '$new_name'
171may lose your changes. At this point, you can do one of two things:
172 (1) Decide it is Ok and say 'git checkout -f $new_name';
173 (2) Start a new branch from the current commit, by saying
174 'git checkout -b <branch-name>'.
175Leaving your HEAD detached; not switching to branch '$new_name'."
ead80606
JH
176 exit 1;
177 }
178 fi
c847f537 179fi
91dcdfd3 180
5a03e7f2
SP
181if [ "X$old" = X ]
182then
73c838e4
JH
183 echo >&2 "warning: You appear to be on a branch yet to be born."
184 echo >&2 "warning: Forcing checkout of $new_name."
5a03e7f2
SP
185 force=1
186fi
187
a79944d7 188if [ "$force" ]
303e5f4c 189then
4170af82 190 git-read-tree --reset -u $new
303e5f4c 191else
7f88c846 192 git-update-index --refresh >/dev/null
11271480 193 merge_error=$(git-read-tree -m -u --exclude-per-directory=.gitignore $old $new 2>&1) || (
1be0659e
JH
194 case "$merge" in
195 '')
196 echo >&2 "$merge_error"
197 exit 1 ;;
19205acf
JH
198 esac
199
1be0659e
JH
200 # Match the index to the working tree, and do a three-way.
201 git diff-files --name-only | git update-index --remove --stdin &&
19205acf 202 work=`git write-tree` &&
d7ebd53d 203 git read-tree --reset -u $new || exit
1be0659e 204
d7ebd53d
JH
205 eval GITHEAD_$new=${new_name:-${branch:-$new}} &&
206 eval GITHEAD_$work=local &&
207 export GITHEAD_$new GITHEAD_$work &&
208 git merge-recursive $old -- $new $work
1be0659e
JH
209
210 # Do not register the cleanly merged paths in the index yet.
211 # this is not a real merge before committing, but just carrying
212 # the working tree changes along.
213 unmerged=`git ls-files -u`
214 git read-tree --reset $new
215 case "$unmerged" in
216 '') ;;
217 *)
218 (
219 z40=0000000000000000000000000000000000000000
220 echo "$unmerged" |
221 sed -e 's/^[0-7]* [0-9a-f]* /'"0 $z40 /"
222 echo "$unmerged"
223 ) | git update-index --index-info
224 ;;
225 esac
226 exit 0
19205acf 227 )
980d8ce5 228 saved_err=$?
504fe714
JH
229 if test "$saved_err" = 0
230 then
231 test "$new" = "$old" || git diff-index --name-status "$new"
232 fi
980d8ce5 233 (exit $saved_err)
ef0bfa25
LT
234fi
235
236#
01385e27 237# Switch the HEAD pointer to the new branch if we
ef0bfa25
LT
238# checked out a branch head, and remove any potential
239# old MERGE_HEAD's (subsequent commits will clearly not
240# be based on them, since we re-set the index)
241#
242if [ "$?" -eq 0 ]; then
91dcdfd3 243 if [ "$newbranch" ]; then
969d326d 244 if [ "$newbranch_log" ]; then
d7fb7a37
SP
245 mkdir -p $(dirname "$GIT_DIR/logs/refs/heads/$newbranch")
246 touch "$GIT_DIR/logs/refs/heads/$newbranch"
969d326d
SP
247 fi
248 git-update-ref -m "checkout: Created from $new_name" "refs/heads/$newbranch" $new || exit
91dcdfd3
LT
249 branch="$newbranch"
250 fi
bfbbb8f8
JH
251 if test -n "$branch"
252 then
253 GIT_DIR="$GIT_DIR" git-symbolic-ref HEAD "refs/heads/$branch"
254 elif test -n "$detached"
255 then
256 # NEEDSWORK: we would want a command to detach the HEAD
257 # atomically, instead of this handcrafted command sequence.
258 # Perhaps:
259 # git update-ref --detach HEAD $new
260 # or something like that...
261 #
262 echo "$detached" >"$GIT_DIR/HEAD.new" &&
263 mv "$GIT_DIR/HEAD.new" "$GIT_DIR/HEAD" ||
264 die "Cannot detach HEAD"
265 if test -n "$detach_warn"
266 then
267 echo >&2 "$detach_warn"
268 fi
269 fi
ef0bfa25 270 rm -f "$GIT_DIR/MERGE_HEAD"
ab22707f
TL
271else
272 exit 1
ef0bfa25 273fi