]> git.ipfire.org Git - thirdparty/git.git/blame - git-stash.sh
Merge branch 'maint' of git://repo.or.cz/git-gui into maint
[thirdparty/git.git] / git-stash.sh
CommitLineData
f2c66ed1
NS
1#!/bin/sh
2# Copyright (c) 2007, Nanako Shiraishi
3
a5ab00c5
SB
4dashless=$(basename "$0" | sed -e 's/-/ /')
5USAGE="list [<options>]
6 or: $dashless (show | drop | pop ) [<stash>]
7 or: $dashless apply [--index] [<stash>]
8 or: $dashless branch <branchname> [<stash>]
9 or: $dashless [save [--keep-index] [<message>]]
10 or: $dashless clear"
f2c66ed1 11
3cd2491a 12SUBDIRECTORY_OK=Yes
8f321a39 13OPTIONS_SPEC=
f2c66ed1
NS
14. git-sh-setup
15require_work_tree
ceff079b 16cd_to_toplevel
f2c66ed1
NS
17
18TMP="$GIT_DIR/.git-stash.$$"
19trap 'rm -f "$TMP-*"' 0
20
21ref_stash=refs/stash
22
23no_changes () {
6848d58c
JS
24 git diff-index --quiet --cached HEAD --ignore-submodules -- &&
25 git diff-files --quiet --ignore-submodules
f2c66ed1
NS
26}
27
28clear_stash () {
3023dc69
JH
29 if test $# != 0
30 then
31 die "git stash clear with parameters is unimplemented"
32 fi
7ab3cc70
JH
33 if current=$(git rev-parse --verify $ref_stash 2>/dev/null)
34 then
a9ee9bf9 35 git update-ref -d $ref_stash $current
7ab3cc70 36 fi
f2c66ed1
NS
37}
38
bc9e7399 39create_stash () {
9f62e18a
JH
40 stash_msg="$1"
41
f2c66ed1
NS
42 if no_changes
43 then
f2c66ed1
NS
44 exit 0
45 fi
f12e925a 46
f2c66ed1 47 # state of the base commit
5be60078 48 if b_commit=$(git rev-parse --verify HEAD)
f2c66ed1 49 then
aa4f31d5 50 head=$(git log --no-color --abbrev-commit --pretty=oneline -n 1 HEAD --)
f2c66ed1
NS
51 else
52 die "You do not have the initial commit yet"
53 fi
54
5be60078 55 if branch=$(git symbolic-ref -q HEAD)
f2c66ed1
NS
56 then
57 branch=${branch#refs/heads/}
58 else
59 branch='(no branch)'
60 fi
61 msg=$(printf '%s: %s' "$branch" "$head")
62
63 # state of the index
5be60078 64 i_tree=$(git write-tree) &&
6143fa2c 65 i_commit=$(printf 'index on %s\n' "$msg" |
5be60078 66 git commit-tree $i_tree -p $b_commit) ||
f2c66ed1
NS
67 die "Cannot save the current index state"
68
69 # state of the working tree
70 w_tree=$( (
b24f56d6
JH
71 rm -f "$TMP-index" &&
72 cp -p ${GIT_INDEX_FILE-"$GIT_DIR/index"} "$TMP-index" &&
f2c66ed1
NS
73 GIT_INDEX_FILE="$TMP-index" &&
74 export GIT_INDEX_FILE &&
b24f56d6 75 git read-tree -m $i_tree &&
5be60078
JH
76 git add -u &&
77 git write-tree &&
f2c66ed1
NS
78 rm -f "$TMP-index"
79 ) ) ||
80 die "Cannot save the current worktree state"
81
82 # create the stash
9f62e18a
JH
83 if test -z "$stash_msg"
84 then
85 stash_msg=$(printf 'WIP on %s' "$msg")
86 else
87 stash_msg=$(printf 'On %s: %s' "$branch" "$stash_msg")
88 fi
89 w_commit=$(printf '%s\n' "$stash_msg" |
5be60078 90 git commit-tree $w_tree -p $b_commit -p $i_commit) ||
f2c66ed1 91 die "Cannot record working tree state"
bc9e7399 92}
f2c66ed1 93
bc9e7399 94save_stash () {
7bedebca
SG
95 keep_index=
96 case "$1" in
97 --keep-index)
98 keep_index=t
99 shift
100 esac
101
47629dcf 102 stash_msg="$*"
bc9e7399
JH
103
104 if no_changes
105 then
7c390d90 106 echo 'No local changes to save'
bc9e7399
JH
107 exit 0
108 fi
109 test -f "$GIT_DIR/logs/$ref_stash" ||
110 clear_stash || die "Cannot initialize stash"
111
112 create_stash "$stash_msg"
a9ee9bf9
EM
113
114 # Make sure the reflog for stash is kept.
115 : >>"$GIT_DIR/logs/$ref_stash"
f2c66ed1 116
9f62e18a 117 git update-ref -m "$stash_msg" $ref_stash $w_commit ||
f2c66ed1 118 die "Cannot save the current status"
7c390d90 119 printf 'Saved working directory and index state "%s"\n' "$stash_msg"
7bedebca
SG
120
121 git reset --hard
122
123 if test -n "$keep_index" && test -n $i_tree
124 then
125 git read-tree --reset -u $i_tree
126 fi
f2c66ed1
NS
127}
128
401de405 129have_stash () {
5be60078 130 git rev-parse --verify $ref_stash >/dev/null 2>&1
401de405
JK
131}
132
f2c66ed1 133list_stash () {
401de405 134 have_stash || return 0
aa4f31d5 135 git log --no-color --pretty=oneline -g "$@" $ref_stash -- |
f2c66ed1
NS
136 sed -n -e 's/^[.0-9a-f]* refs\///p'
137}
138
139show_stash () {
5be60078 140 flags=$(git rev-parse --no-revs --flags "$@")
f2c66ed1
NS
141 if test -z "$flags"
142 then
143 flags=--stat
144 fi
5be60078 145 s=$(git rev-parse --revs-only --no-flags --default $ref_stash "$@")
f2c66ed1 146
5be60078
JH
147 w_commit=$(git rev-parse --verify "$s") &&
148 b_commit=$(git rev-parse --verify "$s^") &&
e7187e4e 149 git diff $flags $b_commit $w_commit
f2c66ed1
NS
150}
151
152apply_stash () {
6848d58c 153 git diff-files --quiet --ignore-submodules ||
f2c66ed1
NS
154 die 'Cannot restore on top of a dirty state'
155
150937c4
JS
156 unstash_index=
157 case "$1" in
158 --index)
159 unstash_index=t
160 shift
161 esac
162
f2c66ed1 163 # current index state
5be60078 164 c_tree=$(git write-tree) ||
f2c66ed1
NS
165 die 'Cannot apply a stash in the middle of a merge'
166
cbeaccc3
JH
167 # stash records the work tree, and is a merge between the
168 # base commit (first parent) and the index tree (second parent).
5be60078
JH
169 s=$(git rev-parse --revs-only --no-flags --default $ref_stash "$@") &&
170 w_tree=$(git rev-parse --verify "$s:") &&
cbeaccc3
JH
171 b_tree=$(git rev-parse --verify "$s^1:") &&
172 i_tree=$(git rev-parse --verify "$s^2:") ||
f2c66ed1
NS
173 die "$*: no valid stashed state found"
174
cbeaccc3 175 unstashed_index_tree=
7bedebca
SG
176 if test -n "$unstash_index" && test "$b_tree" != "$i_tree" &&
177 test "$c_tree" != "$i_tree"
cbeaccc3 178 then
89d750bf 179 git diff-tree --binary $s^2^..$s^2 | git apply --cached
150937c4
JS
180 test $? -ne 0 &&
181 die 'Conflicts in index. Try without --index.'
182 unstashed_index_tree=$(git-write-tree) ||
183 die 'Could not save index tree'
184 git reset
cbeaccc3 185 fi
150937c4 186
f2c66ed1
NS
187 eval "
188 GITHEAD_$w_tree='Stashed changes' &&
189 GITHEAD_$c_tree='Updated upstream' &&
190 GITHEAD_$b_tree='Version stash was based on' &&
191 export GITHEAD_$w_tree GITHEAD_$c_tree GITHEAD_$b_tree
192 "
193
194 if git-merge-recursive $b_tree -- $c_tree $w_tree
195 then
196 # No conflict
cbeaccc3
JH
197 if test -n "$unstashed_index_tree"
198 then
199 git read-tree "$unstashed_index_tree"
83b3df7d
JH
200 else
201 a="$TMP-added" &&
89d750bf 202 git diff-index --cached --name-only --diff-filter=A $c_tree >"$a" &&
83b3df7d
JH
203 git read-tree --reset $c_tree &&
204 git update-index --add --stdin <"$a" ||
205 die "Cannot unstage modified files"
206 rm -f "$a"
cbeaccc3
JH
207 fi
208 git status || :
f2c66ed1
NS
209 else
210 # Merge conflict; keep the exit status from merge-recursive
150937c4 211 status=$?
cbeaccc3
JH
212 if test -n "$unstash_index"
213 then
214 echo >&2 'Index was not unstashed.'
215 fi
150937c4 216 exit $status
f2c66ed1
NS
217 fi
218}
219
e25d5f9c
BC
220drop_stash () {
221 have_stash || die 'No stash entries to drop'
222
223 if test $# = 0
224 then
225 set x "$ref_stash@{0}"
226 shift
227 fi
228 # Verify supplied argument looks like a stash entry
229 s=$(git rev-parse --revs-only --no-flags "$@") &&
230 git rev-parse --verify "$s:" > /dev/null 2>&1 &&
231 git rev-parse --verify "$s^1:" > /dev/null 2>&1 &&
232 git rev-parse --verify "$s^2:" > /dev/null 2>&1 ||
233 die "$*: not a valid stashed state"
234
235 git reflog delete --updateref --rewrite "$@" &&
236 echo "Dropped $* ($s)" || die "$*: Could not drop stash entry"
237
238 # clear_stash if we just dropped the last stash entry
239 git rev-parse --verify "$ref_stash@{0}" > /dev/null 2>&1 || clear_stash
240}
241
656b5034
AMS
242apply_to_branch () {
243 have_stash || die 'Nothing to apply'
244
245 test -n "$1" || die 'No branch name specified'
246 branch=$1
247
248 if test -z "$2"
249 then
250 set x "$ref_stash@{0}"
251 fi
252 stash=$2
253
254 git-checkout -b $branch $stash^ &&
255 apply_stash --index $stash &&
256 drop_stash $stash
257}
258
f2c66ed1
NS
259# Main command set
260case "$1" in
fcb10a96
JH
261list)
262 shift
f2c66ed1
NS
263 if test $# = 0
264 then
265 set x -n 10
266 shift
267 fi
268 list_stash "$@"
269 ;;
270show)
271 shift
272 show_stash "$@"
273 ;;
683befa1
KL
274save)
275 shift
47629dcf 276 save_stash "$@"
683befa1 277 ;;
f2c66ed1
NS
278apply)
279 shift
280 apply_stash "$@"
281 ;;
282clear)
3023dc69
JH
283 shift
284 clear_stash "$@"
f2c66ed1 285 ;;
bc9e7399
JH
286create)
287 if test $# -gt 0 && test "$1" = create
288 then
289 shift
290 fi
291 create_stash "$*" && echo "$w_commit"
292 ;;
e25d5f9c
BC
293drop)
294 shift
295 drop_stash "$@"
296 ;;
bd56ff54
BC
297pop)
298 shift
299 if apply_stash "$@"
300 then
301 test -z "$unstash_index" || shift
302 drop_stash "$@"
303 fi
304 ;;
656b5034
AMS
305branch)
306 shift
307 apply_to_branch "$@"
308 ;;
f2c66ed1 309*)
683befa1 310 if test $# -eq 0
9f62e18a 311 then
97bc00a4 312 save_stash &&
7bedebca 313 echo '(To restore them type "git stash apply")'
683befa1
KL
314 else
315 usage
9f62e18a 316 fi
9f62e18a 317 ;;
f2c66ed1 318esac