]> git.ipfire.org Git - thirdparty/git.git/blame - git-checkout.sh
Docs: update cvs-migration.txt to reflect clone's new default behavior
[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
b0bafe03 6
969d326d 7old_name=HEAD
5a03e7f2 8old=$(git-rev-parse --verify $old_name 2>/dev/null)
e8b11749 9new=
969d326d 10new_name=
a79944d7 11force=
e8b11749 12branch=
91dcdfd3 13newbranch=
969d326d 14newbranch_log=
1be0659e 15merge=
e8b11749
LT
16while [ "$#" != "0" ]; do
17 arg="$1"
18 shift
19 case "$arg" in
91dcdfd3
LT
20 "-b")
21 newbranch="$1"
22 shift
23 [ -z "$newbranch" ] &&
24 die "git checkout: -b needs a branch name"
305e22c3 25 git-show-ref --verify --quiet -- "refs/heads/$newbranch" &&
91dcdfd3 26 die "git checkout: branch $newbranch already exists"
03feddd6 27 git-check-ref-format "heads/$newbranch" ||
babfaf8d 28 die "git checkout: we do not like '$newbranch' as a branch name."
91dcdfd3 29 ;;
969d326d
SP
30 "-l")
31 newbranch_log=1
32 ;;
303e5f4c 33 "-f")
e8b11749 34 force=1
303e5f4c 35 ;;
1be0659e
JH
36 -m)
37 merge=1
38 ;;
4aaa7027
JH
39 --)
40 break
41 ;;
b0bafe03
CS
42 -*)
43 usage
44 ;;
303e5f4c 45 *)
4aaa7027
JH
46 if rev=$(git-rev-parse --verify "$arg^0" 2>/dev/null)
47 then
48 if [ -z "$rev" ]; then
49 echo "unknown flag $arg"
50 exit 1
51 fi
52 new="$rev"
969d326d 53 new_name="$arg^0"
305e22c3
LT
54 if git-show-ref --verify --quiet -- "refs/heads/$arg"
55 then
4aaa7027
JH
56 branch="$arg"
57 fi
58 elif rev=$(git-rev-parse --verify "$arg^{tree}" 2>/dev/null)
59 then
60 # checking out selected paths from a tree-ish.
61 new="$rev"
969d326d 62 new_name="$arg^{tree}"
4aaa7027
JH
63 branch=
64 else
65 new=
969d326d 66 new_name=
4aaa7027
JH
67 branch=
68 set x "$arg" "$@"
69 shift
e8b11749 70 fi
2608003f
JH
71 case "$1" in
72 --)
73 shift ;;
74 esac
4aaa7027 75 break
e8b11749 76 ;;
303e5f4c 77 esac
303e5f4c
LT
78done
79
897643cc
JH
80case "$force$merge" in
8111)
82 die "git checkout: -f and -m are incompatible"
83esac
84
4aaa7027
JH
85# The behaviour of the command with and without explicit path
86# parameters is quite different.
87#
88# Without paths, we are checking out everything in the work tree,
89# possibly switching branches. This is the traditional behaviour.
91dcdfd3 90#
4aaa7027
JH
91# With paths, we are _never_ switching branch, but checking out
92# the named paths from either index (when no rev is given),
93# or the named tree-ish (when rev is given).
94
95if test "$#" -ge 1
96then
babfaf8d
JW
97 hint=
98 if test "$#" -eq 1
99 then
100 hint="
101Did you intend to checkout '$@' which can not be resolved as commit?"
102 fi
1be0659e 103 if test '' != "$newbranch$force$merge"
4aaa7027 104 then
babfaf8d 105 die "git checkout: updating paths is incompatible with switching branches/forcing$hint"
4aaa7027
JH
106 fi
107 if test '' != "$new"
108 then
109 # from a specific tree-ish; note that this is for
110 # rescuing paths and is never meant to remove what
111 # is not in the named tree-ish.
d0d14cf3 112 git-ls-tree --full-name -r "$new" "$@" |
4aaa7027
JH
113 git-update-index --index-info || exit $?
114 fi
bf7e1472
JH
115
116 # Make sure the request is about existing paths.
117 git-ls-files --error-unmatch -- "$@" >/dev/null || exit
118 git-ls-files -- "$@" |
119 git-checkout-index -f -u --stdin
4aaa7027
JH
120 exit $?
121else
122 # Make sure we did not fall back on $arg^{tree} codepath
123 # since we are not checking out from an arbitrary tree-ish,
124 # but switching branches.
125 if test '' != "$new"
126 then
127 git-rev-parse --verify "$new^{commit}" >/dev/null 2>&1 ||
128 die "Cannot switch branch to a non-commit."
129 fi
130fi
131
104f3e03
JH
132# We are switching branches and checking out trees, so
133# we *NEED* to be at the toplevel.
134cdup=$(git-rev-parse --show-cdup)
135if test ! -z "$cdup"
136then
137 cd "$cdup"
138fi
139
969d326d 140[ -z "$new" ] && new=$old && new_name="$old_name"
4aaa7027 141
91dcdfd3
LT
142# If we don't have an old branch that we're switching to,
143# and we don't have a new branch name for the target we
144# are switching to, then we'd better just be checking out
145# what we already had
4aaa7027 146
91dcdfd3
LT
147[ -z "$branch$newbranch" ] &&
148 [ "$new" != "$old" ] &&
0a576174
NP
149 die "git checkout: provided reference cannot be checked out directly
150
151 You need -b to associate a new branch with the wanted checkout. Example:
152 git checkout -b <new_branch_name> $arg
153"
91dcdfd3 154
5a03e7f2
SP
155if [ "X$old" = X ]
156then
157 echo "warning: You do not appear to currently be on a branch." >&2
158 echo "warning: Forcing checkout of $new_name." >&2
159 force=1
160fi
161
a79944d7 162if [ "$force" ]
303e5f4c 163then
4170af82 164 git-read-tree --reset -u $new
303e5f4c 165else
7f88c846 166 git-update-index --refresh >/dev/null
11271480 167 merge_error=$(git-read-tree -m -u --exclude-per-directory=.gitignore $old $new 2>&1) || (
1be0659e
JH
168 case "$merge" in
169 '')
170 echo >&2 "$merge_error"
171 exit 1 ;;
19205acf
JH
172 esac
173
1be0659e
JH
174 # Match the index to the working tree, and do a three-way.
175 git diff-files --name-only | git update-index --remove --stdin &&
19205acf 176 work=`git write-tree` &&
abc02670 177 git read-tree --reset -u $new &&
11271480
JH
178 git read-tree -m -u --aggressive --exclude-per-directory=.gitignore $old $new $work ||
179 exit
1be0659e 180
19205acf
JH
181 if result=`git write-tree 2>/dev/null`
182 then
1be0659e
JH
183 echo >&2 "Trivially automerged."
184 else
185 git merge-index -o git-merge-one-file -a
19205acf 186 fi
1be0659e
JH
187
188 # Do not register the cleanly merged paths in the index yet.
189 # this is not a real merge before committing, but just carrying
190 # the working tree changes along.
191 unmerged=`git ls-files -u`
192 git read-tree --reset $new
193 case "$unmerged" in
194 '') ;;
195 *)
196 (
197 z40=0000000000000000000000000000000000000000
198 echo "$unmerged" |
199 sed -e 's/^[0-7]* [0-9a-f]* /'"0 $z40 /"
200 echo "$unmerged"
201 ) | git update-index --index-info
202 ;;
203 esac
204 exit 0
19205acf 205 )
980d8ce5 206 saved_err=$?
504fe714
JH
207 if test "$saved_err" = 0
208 then
209 test "$new" = "$old" || git diff-index --name-status "$new"
210 fi
980d8ce5 211 (exit $saved_err)
ef0bfa25
LT
212fi
213
214#
01385e27 215# Switch the HEAD pointer to the new branch if we
ef0bfa25
LT
216# checked out a branch head, and remove any potential
217# old MERGE_HEAD's (subsequent commits will clearly not
218# be based on them, since we re-set the index)
219#
220if [ "$?" -eq 0 ]; then
91dcdfd3 221 if [ "$newbranch" ]; then
969d326d 222 if [ "$newbranch_log" ]; then
d7fb7a37
SP
223 mkdir -p $(dirname "$GIT_DIR/logs/refs/heads/$newbranch")
224 touch "$GIT_DIR/logs/refs/heads/$newbranch"
969d326d
SP
225 fi
226 git-update-ref -m "checkout: Created from $new_name" "refs/heads/$newbranch" $new || exit
91dcdfd3
LT
227 branch="$newbranch"
228 fi
8098a178
JH
229 [ "$branch" ] &&
230 GIT_DIR="$GIT_DIR" git-symbolic-ref HEAD "refs/heads/$branch"
ef0bfa25 231 rm -f "$GIT_DIR/MERGE_HEAD"
ab22707f
TL
232else
233 exit 1
ef0bfa25 234fi