]> git.ipfire.org Git - thirdparty/git.git/blame - git-stash.sh
stash: learn to parse -m/--message like commit does
[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>]
fcdd0e92
SB
6 or: $dashless show [<stash>]
7 or: $dashless drop [-q|--quiet] [<stash>]
8 or: $dashless ( pop | apply ) [--index] [-q|--quiet] [<stash>]
a5ab00c5 9 or: $dashless branch <branchname> [<stash>]
1ada5020
TG
10 or: $dashless save [--patch] [-k|--[no-]keep-index] [-q|--quiet]
11 [-u|--include-untracked] [-a|--all] [<message>]
12 or: $dashless [push [--patch] [-k|--[no-]keep-index] [-q|--quiet]
13 [-u|--include-untracked] [-a|--all] [-m <message>]
14 [-- <pathspec>...]]
a5ab00c5 15 or: $dashless clear"
f2c66ed1 16
3cd2491a 17SUBDIRECTORY_OK=Yes
8f321a39 18OPTIONS_SPEC=
d0ea45bf 19START_DIR=$(pwd)
f2c66ed1
NS
20. git-sh-setup
21require_work_tree
22fc703e 22prefix=$(git rev-parse --show-prefix) || exit 1
ceff079b 23cd_to_toplevel
f2c66ed1
NS
24
25TMP="$GIT_DIR/.git-stash.$$"
c697b577 26TMPindex=${GIT_INDEX_FILE-"$(git rev-parse --git-path index)"}.stash.$$
3ba2e865 27trap 'rm -f "$TMP-"* "$TMPindex"' 0
f2c66ed1
NS
28
29ref_stash=refs/stash
30
dda1f2a5
TR
31if git config --get-colorbool color.interactive; then
32 help_color="$(git config --get-color color.interactive.help 'red bold')"
33 reset_color="$(git config --get-color '' reset)"
34else
35 help_color=
36 reset_color=
37fi
38
f2c66ed1 39no_changes () {
df6bba09
TG
40 git diff-index --quiet --cached HEAD --ignore-submodules -- "$@" &&
41 git diff-files --quiet --ignore-submodules -- "$@" &&
78751302
DC
42 (test -z "$untracked" || test -z "$(untracked_files)")
43}
44
45untracked_files () {
5fc92f88
KD
46 if test "$1" = "-z"
47 then
48 shift
49 z=-z
50 else
51 z=
52 fi
78751302
DC
53 excl_opt=--exclude-standard
54 test "$untracked" = "all" && excl_opt=
5fc92f88 55 git ls-files -o $z $excl_opt -- "$@"
f2c66ed1
NS
56}
57
58clear_stash () {
3023dc69
JH
59 if test $# != 0
60 then
b1440ce2 61 die "$(gettext "git stash clear with parameters is unimplemented")"
3023dc69 62 fi
1956dfa8 63 if current=$(git rev-parse --verify --quiet $ref_stash)
7ab3cc70 64 then
a9ee9bf9 65 git update-ref -d $ref_stash $current
7ab3cc70 66 fi
f2c66ed1
NS
67}
68
bc9e7399 69create_stash () {
9ca6326d
TG
70 stash_msg=
71 untracked=
72 while test $# != 0
73 do
74 case "$1" in
75 -m|--message)
76 shift
77 stash_msg=${1?"BUG: create_stash () -m requires an argument"}
78 ;;
5675473f
PH
79 -m*)
80 stash_msg=${1#-m}
81 ;;
82 --message=*)
83 stash_msg=${1#--message=}
84 ;;
9ca6326d
TG
85 -u|--include-untracked)
86 shift
87 untracked=${1?"BUG: create_stash () -u requires an argument"}
88 ;;
df6bba09
TG
89 --)
90 shift
91 break
92 ;;
9ca6326d
TG
93 esac
94 shift
95 done
9f62e18a 96
1eff26c0 97 git update-index -q --refresh
df6bba09 98 if no_changes "$@"
f2c66ed1 99 then
f2c66ed1
NS
100 exit 0
101 fi
f12e925a 102
f2c66ed1 103 # state of the base commit
5be60078 104 if b_commit=$(git rev-parse --verify HEAD)
f2c66ed1 105 then
b0e621ad 106 head=$(git rev-list --oneline -n 1 HEAD --)
f2c66ed1 107 else
b1440ce2 108 die "$(gettext "You do not have the initial commit yet")"
f2c66ed1
NS
109 fi
110
5be60078 111 if branch=$(git symbolic-ref -q HEAD)
f2c66ed1
NS
112 then
113 branch=${branch#refs/heads/}
114 else
115 branch='(no branch)'
116 fi
117 msg=$(printf '%s: %s' "$branch" "$head")
118
119 # state of the index
5be60078 120 i_tree=$(git write-tree) &&
6143fa2c 121 i_commit=$(printf 'index on %s\n' "$msg" |
5be60078 122 git commit-tree $i_tree -p $b_commit) ||
b1440ce2 123 die "$(gettext "Cannot save the current index state")"
f2c66ed1 124
78751302
DC
125 if test -n "$untracked"
126 then
127 # Untracked files are stored by themselves in a parentless commit, for
128 # ease of unpacking later.
129 u_commit=$(
5fc92f88 130 untracked_files -z "$@" | (
bed137d2
EP
131 GIT_INDEX_FILE="$TMPindex" &&
132 export GIT_INDEX_FILE &&
78751302
DC
133 rm -f "$TMPindex" &&
134 git update-index -z --add --remove --stdin &&
135 u_tree=$(git write-tree) &&
136 printf 'untracked files on %s\n' "$msg" | git commit-tree $u_tree &&
137 rm -f "$TMPindex"
850251f3 138 ) ) || die "$(gettext "Cannot save the untracked files")"
78751302
DC
139
140 untracked_commit_option="-p $u_commit";
141 else
142 untracked_commit_option=
143 fi
144
dda1f2a5
TR
145 if test -z "$patch_mode"
146 then
147
148 # state of the working tree
149 w_tree=$( (
3ba2e865
JS
150 git read-tree --index-output="$TMPindex" -m $i_tree &&
151 GIT_INDEX_FILE="$TMPindex" &&
dda1f2a5 152 export GIT_INDEX_FILE &&
df6bba09 153 git diff-index --name-only -z HEAD -- "$@" >"$TMP-stagenames" &&
44df2e29 154 git update-index -z --add --remove --stdin <"$TMP-stagenames" &&
dda1f2a5 155 git write-tree &&
3ba2e865 156 rm -f "$TMPindex"
dda1f2a5 157 ) ) ||
b1440ce2 158 die "$(gettext "Cannot save the current worktree state")"
dda1f2a5
TR
159
160 else
161
b24f56d6 162 rm -f "$TMP-index" &&
dda1f2a5
TR
163 GIT_INDEX_FILE="$TMP-index" git read-tree HEAD &&
164
165 # find out what the user wants
166 GIT_INDEX_FILE="$TMP-index" \
df6bba09 167 git add--interactive --patch=stash -- "$@" &&
dda1f2a5
TR
168
169 # state of the working tree
170 w_tree=$(GIT_INDEX_FILE="$TMP-index" git write-tree) ||
b1440ce2 171 die "$(gettext "Cannot save the current worktree state")"
f2c66ed1 172
44df2e29 173 git diff-tree -p HEAD $w_tree -- >"$TMP-patch" &&
dda1f2a5 174 test -s "$TMP-patch" ||
b1440ce2 175 die "$(gettext "No changes selected")"
dda1f2a5
TR
176
177 rm -f "$TMP-index" ||
b1440ce2 178 die "$(gettext "Cannot remove temporary index (can't happen)")"
dda1f2a5
TR
179
180 fi
181
f2c66ed1 182 # create the stash
9f62e18a
JH
183 if test -z "$stash_msg"
184 then
185 stash_msg=$(printf 'WIP on %s' "$msg")
186 else
187 stash_msg=$(printf 'On %s: %s' "$branch" "$stash_msg")
188 fi
189 w_commit=$(printf '%s\n' "$stash_msg" |
22f41286
JH
190 git commit-tree $w_tree -p $b_commit -p $i_commit $untracked_commit_option) ||
191 die "$(gettext "Cannot record working tree state")"
bc9e7399 192}
f2c66ed1 193
bd514cad
RR
194store_stash () {
195 while test $# != 0
196 do
197 case "$1" in
198 -m|--message)
199 shift
200 stash_msg="$1"
201 ;;
5675473f
PH
202 -m*)
203 stash_msg=${1#-m}
204 ;;
205 --message=*)
206 stash_msg=${1#--message=}
207 ;;
bd514cad
RR
208 -q|--quiet)
209 quiet=t
210 ;;
211 *)
212 break
213 ;;
214 esac
215 shift
216 done
217 test $# = 1 ||
218 die "$(eval_gettext "\"$dashless store\" requires one <commit> argument")"
219
220 w_commit="$1"
221 if test -z "$stash_msg"
222 then
223 stash_msg="Created via \"git stash store\"."
224 fi
225
89dea973 226 git update-ref --create-reflog -m "$stash_msg" $ref_stash $w_commit
bd514cad 227 ret=$?
268ef4d3 228 test $ret != 0 && test -z "$quiet" &&
bd514cad
RR
229 die "$(eval_gettext "Cannot update \$ref_stash with \$w_commit")"
230 return $ret
231}
232
f5727e26 233push_stash () {
7bedebca 234 keep_index=
dda1f2a5 235 patch_mode=
78751302 236 untracked=
f5727e26 237 stash_msg=
fcdd0e92
SB
238 while test $# != 0
239 do
240 case "$1" in
ea41cfc4 241 -k|--keep-index)
fcdd0e92
SB
242 keep_index=t
243 ;;
dda1f2a5 244 --no-keep-index)
3a243f70 245 keep_index=n
dda1f2a5
TR
246 ;;
247 -p|--patch)
248 patch_mode=t
3a243f70
DM
249 # only default to keep if we don't already have an override
250 test -z "$keep_index" && keep_index=t
fcdd0e92
SB
251 ;;
252 -q|--quiet)
253 GIT_QUIET=t
254 ;;
78751302
DC
255 -u|--include-untracked)
256 untracked=untracked
257 ;;
258 -a|--all)
259 untracked=all
260 ;;
f5727e26
TG
261 -m|--message)
262 shift
263 test -z ${1+x} && usage
264 stash_msg=$1
265 ;;
5675473f
PH
266 -m*)
267 stash_msg=${1#-m}
268 ;;
269 --message=*)
270 stash_msg=${1#--message=}
271 ;;
5ba28313
JK
272 --help)
273 show_help
274 ;;
3c2eb80f
MM
275 --)
276 shift
277 break
278 ;;
279 -*)
eed10649
ÆAB
280 option="$1"
281 # TRANSLATORS: $option is an invalid option, like
282 # `--blah-blah'. The 7 spaces at the beginning of the
283 # second line correspond to "error: ". So you should line
284 # up the second line with however many characters the
285 # translation of "error: " takes in your language. E.g. in
286 # English this is:
287 #
288 # $ git stash save --blah-blah 2>&1 | head -n 2
289 # error: unknown option for 'stash save': --blah-blah
290 # To provide a message, use git stash save -- '--blah-blah'
ed3c400c
RL
291 eval_gettextln "error: unknown option for 'stash save': \$option
292 To provide a message, use git stash save -- '\$option'"
3c2eb80f
MM
293 usage
294 ;;
fcdd0e92
SB
295 *)
296 break
297 ;;
298 esac
7bedebca 299 shift
fcdd0e92 300 done
7bedebca 301
22fc703e
PS
302 eval "set $(git rev-parse --sq --prefix "$prefix" -- "$@")"
303
78751302
DC
304 if test -n "$patch_mode" && test -n "$untracked"
305 then
850251f3 306 die "$(gettext "Can't use --patch and --include-untracked or --all at the same time")"
78751302
DC
307 fi
308
df6bba09
TG
309 test -n "$untracked" || git ls-files --error-unmatch -- "$@" >/dev/null || exit 1
310
1eff26c0 311 git update-index -q --refresh
df6bba09 312 if no_changes "$@"
bc9e7399 313 then
5a175871 314 say "$(gettext "No local changes to save")"
bc9e7399
JH
315 exit 0
316 fi
df6bba09 317
89dea973 318 git reflog exists $ref_stash ||
b1440ce2 319 clear_stash || die "$(gettext "Cannot initialize stash")"
bc9e7399 320
df6bba09 321 create_stash -m "$stash_msg" -u "$untracked" -- "$@"
bd514cad
RR
322 store_stash -m "$stash_msg" -q $w_commit ||
323 die "$(gettext "Cannot save the current status")"
599e7a0b 324 say "$(eval_gettext "Saved working directory and index state \$stash_msg")"
7bedebca 325
dda1f2a5 326 if test -z "$patch_mode"
7bedebca 327 then
df6bba09
TG
328 if test $# != 0
329 then
1790f4fe 330 git reset -q -- "$@"
df6bba09
TG
331 git ls-files -z --modified -- "$@" |
332 git checkout-index -z --force --stdin
1790f4fe 333 git clean --force -q -d -- "$@"
df6bba09 334 else
1790f4fe 335 git reset --hard -q
df6bba09 336 fi
78751302
DC
337 test "$untracked" = "all" && CLEAN_X_OPTION=-x || CLEAN_X_OPTION=
338 if test -n "$untracked"
339 then
df6bba09 340 git clean --force --quiet -d $CLEAN_X_OPTION -- "$@"
78751302 341 fi
dda1f2a5 342
268ef4d3 343 if test "$keep_index" = "t" && test -n "$i_tree"
dda1f2a5 344 then
e0e7f99e
TG
345 git read-tree --reset $i_tree
346 git ls-files -z --modified -- "$@" |
347 git checkout-index -z --force --stdin
dda1f2a5
TR
348 fi
349 else
350 git apply -R < "$TMP-patch" ||
b1440ce2 351 die "$(gettext "Cannot remove worktree changes")"
dda1f2a5 352
3a243f70 353 if test "$keep_index" != "t"
dda1f2a5 354 then
869fb8f7 355 git reset -q -- "$@"
dda1f2a5 356 fi
7bedebca 357 fi
f2c66ed1
NS
358}
359
f5727e26
TG
360save_stash () {
361 push_options=
362 while test $# != 0
363 do
364 case "$1" in
365 --)
366 shift
367 break
368 ;;
369 -*)
370 # pass all options through to push_stash
371 push_options="$push_options $1"
372 ;;
373 *)
374 break
375 ;;
376 esac
377 shift
378 done
379
380 stash_msg="$*"
381
382 if test -z "$stash_msg"
383 then
384 push_stash $push_options
385 else
386 push_stash $push_options -m "$stash_msg"
387 fi
388}
389
401de405 390have_stash () {
1956dfa8 391 git rev-parse --verify --quiet $ref_stash >/dev/null
401de405
JK
392}
393
f2c66ed1 394list_stash () {
401de405 395 have_stash || return 0
288c67ca 396 git log --format="%gd: %gs" -g --first-parent -m "$@" $ref_stash --
f2c66ed1
NS
397}
398
399show_stash () {
d6cc2df5 400 ALLOW_UNKNOWN_FLAGS=t
a9bf09e1 401 assert_stash_like "$@"
14cd4581 402
3086c064
NK
403 if test -z "$FLAGS"
404 then
405 if test "$(git config --bool stash.showStat || echo true)" = "true"
406 then
407 FLAGS=--stat
408 fi
409
410 if test "$(git config --bool stash.showPatch || echo false)" = "true"
411 then
412 FLAGS=${FLAGS}${FLAGS:+ }-p
413 fi
414
415 if test -z "$FLAGS"
416 then
417 return 0
418 fi
419 fi
420
421 git diff ${FLAGS} $b_commit $w_commit
f2c66ed1
NS
422}
423
5ba28313
JK
424show_help () {
425 exec git help stash
426 exit 1
427}
428
ef763129
JS
429#
430# Parses the remaining options looking for flags and
431# at most one revision defaulting to ${ref_stash}@{0}
432# if none found.
433#
434# Derives related tree and commit objects from the
435# revision, if one is found.
436#
437# stash records the work tree, and is a merge between the
438# base commit (first parent) and the index tree (second parent).
439#
440# REV is set to the symbolic version of the specified stash-like commit
441# IS_STASH_LIKE is non-blank if ${REV} looks like a stash
442# IS_STASH_REF is non-blank if the ${REV} looks like a stash ref
443# s is set to the SHA1 of the stash commit
444# w_commit is set to the commit containing the working tree
445# b_commit is set to the base commit
446# i_commit is set to the commit containing the index tree
78751302 447# u_commit is set to the commit containing the untracked files tree
ef763129
JS
448# w_tree is set to the working tree
449# b_tree is set to the base tree
450# i_tree is set to the index tree
78751302 451# u_tree is set to the untracked files tree
ef763129
JS
452#
453# GIT_QUIET is set to t if -q is specified
454# INDEX_OPTION is set to --index if --index is specified.
d6cc2df5 455# FLAGS is set to the remaining flags (if allowed)
ef763129
JS
456#
457# dies if:
458# * too many revisions specified
459# * no revision is specified and there is no stash stack
460# * a revision is specified which cannot be resolve to a SHA1
461# * a non-existent stash reference is specified
d6cc2df5 462# * unknown flags were set and ALLOW_UNKNOWN_FLAGS is not "t"
ef763129
JS
463#
464
465parse_flags_and_rev()
466{
467 test "$PARSE_CACHE" = "$*" && return 0 # optimisation
468 PARSE_CACHE="$*"
469
470 IS_STASH_LIKE=
471 IS_STASH_REF=
472 INDEX_OPTION=
473 s=
474 w_commit=
475 b_commit=
476 i_commit=
78751302 477 u_commit=
ef763129
JS
478 w_tree=
479 b_tree=
480 i_tree=
78751302 481 u_tree=
ef763129 482
ef763129 483 FLAGS=
a56c8f5a 484 REV=
2bea593b 485 for opt
ef763129 486 do
2bea593b
JS
487 case "$opt" in
488 -q|--quiet)
489 GIT_QUIET=-t
490 ;;
ef763129
JS
491 --index)
492 INDEX_OPTION=--index
493 ;;
5ba28313
JK
494 --help)
495 show_help
496 ;;
2bea593b 497 -*)
d6cc2df5
JK
498 test "$ALLOW_UNKNOWN_FLAGS" = t ||
499 die "$(eval_gettext "unknown option: \$opt")"
2bea593b 500 FLAGS="${FLAGS}${FLAGS:+ }$opt"
ef763129 501 ;;
a56c8f5a
AW
502 *)
503 REV="${REV}${REV:+ }'$opt'"
504 ;;
ef763129 505 esac
ef763129
JS
506 done
507
2a07e437 508 eval set -- $REV
ef763129
JS
509
510 case $# in
511 0)
e01db917 512 have_stash || die "$(gettext "No stash entries found.")"
ef763129
JS
513 set -- ${ref_stash}@{0}
514 ;;
515 1)
516 :
517 ;;
518 *)
33ceddcf 519 die "$(eval_gettext "Too many revisions specified: \$REV")"
ef763129
JS
520 ;;
521 esac
522
a56c8f5a
AW
523 case "$1" in
524 *[!0-9]*)
525 :
526 ;;
527 *)
528 set -- "${ref_stash}@{$1}"
529 ;;
530 esac
531
1956dfa8 532 REV=$(git rev-parse --symbolic --verify --quiet "$1") || {
155da748 533 reference="$1"
ad5fe377 534 die "$(eval_gettext "\$reference is not a valid reference")"
155da748 535 }
ef763129 536
1956dfa8 537 i_commit=$(git rev-parse --verify --quiet "$REV^2") &&
2a07e437 538 set -- $(git rev-parse "$REV" "$REV^1" "$REV:" "$REV^1:" "$REV^2:" 2>/dev/null) &&
ef763129
JS
539 s=$1 &&
540 w_commit=$1 &&
541 b_commit=$2 &&
542 w_tree=$3 &&
543 b_tree=$4 &&
544 i_tree=$5 &&
545 IS_STASH_LIKE=t &&
546 test "$ref_stash" = "$(git rev-parse --symbolic-full-name "${REV%@*}")" &&
547 IS_STASH_REF=t
78751302 548
1956dfa8 549 u_commit=$(git rev-parse --verify --quiet "$REV^3") &&
2a07e437 550 u_tree=$(git rev-parse "$REV^3:" 2>/dev/null)
ef763129
JS
551}
552
553is_stash_like()
554{
555 parse_flags_and_rev "$@"
556 test -n "$IS_STASH_LIKE"
557}
558
559assert_stash_like() {
777b6f13
ÆAB
560 is_stash_like "$@" || {
561 args="$*"
562 die "$(eval_gettext "'\$args' is not a stash-like commit")"
563 }
ef763129
JS
564}
565
566is_stash_ref() {
567 is_stash_like "$@" && test -n "$IS_STASH_REF"
568}
569
570assert_stash_ref() {
777b6f13
ÆAB
571 is_stash_ref "$@" || {
572 args="$*"
573 die "$(eval_gettext "'\$args' is not a stash reference")"
574 }
ef763129
JS
575}
576
f2c66ed1 577apply_stash () {
fcdd0e92 578
064ed100 579 assert_stash_like "$@"
f2c66ed1 580
b1440ce2 581 git update-index -q --refresh || die "$(gettext "unable to refresh index")"
5fd448f1
OA
582
583 # current index state
584 c_tree=$(git write-tree) ||
b1440ce2 585 die "$(gettext "Cannot apply a stash in the middle of a merge")"
5fd448f1 586
cbeaccc3 587 unstashed_index_tree=
064ed100 588 if test -n "$INDEX_OPTION" && test "$b_tree" != "$i_tree" &&
7bedebca 589 test "$c_tree" != "$i_tree"
cbeaccc3 590 then
89d750bf 591 git diff-tree --binary $s^2^..$s^2 | git apply --cached
150937c4 592 test $? -ne 0 &&
b1440ce2 593 die "$(gettext "Conflicts in index. Try without --index.")"
52070790 594 unstashed_index_tree=$(git write-tree) ||
b1440ce2 595 die "$(gettext "Could not save index tree")"
150937c4 596 git reset
cbeaccc3 597 fi
150937c4 598
78751302
DC
599 if test -n "$u_tree"
600 then
974ce807 601 GIT_INDEX_FILE="$TMPindex" git read-tree "$u_tree" &&
78751302
DC
602 GIT_INDEX_FILE="$TMPindex" git checkout-index --all &&
603 rm -f "$TMPindex" ||
e01db917 604 die "$(gettext "Could not restore untracked files from stash entry")"
78751302
DC
605 fi
606
f2c66ed1
NS
607 eval "
608 GITHEAD_$w_tree='Stashed changes' &&
609 GITHEAD_$c_tree='Updated upstream' &&
610 GITHEAD_$b_tree='Version stash was based on' &&
611 export GITHEAD_$w_tree GITHEAD_$c_tree GITHEAD_$b_tree
612 "
613
fcdd0e92
SB
614 if test -n "$GIT_QUIET"
615 then
69ae92bd 616 GIT_MERGE_VERBOSITY=0 && export GIT_MERGE_VERBOSITY
fcdd0e92 617 fi
52070790 618 if git merge-recursive $b_tree -- $c_tree $w_tree
f2c66ed1
NS
619 then
620 # No conflict
cbeaccc3
JH
621 if test -n "$unstashed_index_tree"
622 then
623 git read-tree "$unstashed_index_tree"
83b3df7d
JH
624 else
625 a="$TMP-added" &&
89d750bf 626 git diff-index --cached --name-only --diff-filter=A $c_tree >"$a" &&
83b3df7d
JH
627 git read-tree --reset $c_tree &&
628 git update-index --add --stdin <"$a" ||
b1440ce2 629 die "$(gettext "Cannot unstage modified files")"
83b3df7d 630 rm -f "$a"
cbeaccc3 631 fi
fcdd0e92
SB
632 squelch=
633 if test -n "$GIT_QUIET"
634 then
635 squelch='>/dev/null 2>&1'
636 fi
26b59b48 637 (cd "$START_DIR" && eval "git status $squelch") || :
f2c66ed1
NS
638 else
639 # Merge conflict; keep the exit status from merge-recursive
150937c4 640 status=$?
743bf6d8 641 git rerere
064ed100 642 if test -n "$INDEX_OPTION"
cbeaccc3 643 then
6fdd50e9 644 gettextln "Index was not unstashed." >&2
cbeaccc3 645 fi
150937c4 646 exit $status
f2c66ed1
NS
647 fi
648}
649
f276872d
JS
650pop_stash() {
651 assert_stash_ref "$@"
652
2d4c9933
JH
653 if apply_stash "$@"
654 then
655 drop_stash "$@"
656 else
657 status=$?
e01db917 658 say "$(gettext "The stash entry is kept in case you need it again.")"
2d4c9933
JH
659 exit $status
660 fi
f276872d
JS
661}
662
e25d5f9c 663drop_stash () {
92e39e44 664 assert_stash_ref "$@"
e25d5f9c 665
92e39e44 666 git reflog delete --updateref --rewrite "${REV}" &&
d4ca6c8b
ÆAB
667 say "$(eval_gettext "Dropped \${REV} (\$s)")" ||
668 die "$(eval_gettext "\${REV}: Could not drop stash entry")"
e25d5f9c
BC
669
670 # clear_stash if we just dropped the last stash entry
1956dfa8
DA
671 git rev-parse --verify --quiet "$ref_stash@{0}" >/dev/null ||
672 clear_stash
e25d5f9c
BC
673}
674
656b5034 675apply_to_branch () {
b1440ce2 676 test -n "$1" || die "$(gettext "No branch name specified")"
656b5034 677 branch=$1
fb433dc9 678 shift 1
656b5034 679
fb433dc9
JS
680 set -- --index "$@"
681 assert_stash_like "$@"
682
683 git checkout -b $branch $REV^ &&
57693d03
JS
684 apply_stash "$@" && {
685 test -z "$IS_STASH_REF" || drop_stash "$@"
686 }
656b5034
AMS
687}
688
9e140909
TG
689test "$1" = "-p" && set "push" "$@"
690
ef763129 691PARSE_CACHE='--not-parsed'
1ada5020 692# The default command is "push" if nothing but options are given
3c2eb80f
MM
693seen_non_option=
694for opt
695do
696 case "$opt" in
9e140909 697 --) break ;;
3c2eb80f
MM
698 -*) ;;
699 *) seen_non_option=t; break ;;
700 esac
701done
702
1ada5020 703test -n "$seen_non_option" || set "push" "$@"
3c2eb80f 704
f2c66ed1
NS
705# Main command set
706case "$1" in
fcb10a96
JH
707list)
708 shift
f2c66ed1
NS
709 list_stash "$@"
710 ;;
711show)
712 shift
713 show_stash "$@"
714 ;;
683befa1
KL
715save)
716 shift
47629dcf 717 save_stash "$@"
683befa1 718 ;;
f5727e26
TG
719push)
720 shift
721 push_stash "$@"
722 ;;
f2c66ed1
NS
723apply)
724 shift
725 apply_stash "$@"
726 ;;
727clear)
3023dc69
JH
728 shift
729 clear_stash "$@"
f2c66ed1 730 ;;
bc9e7399 731create)
0719f300 732 shift
9ca6326d 733 create_stash -m "$*" && echo "$w_commit"
bc9e7399 734 ;;
bd514cad
RR
735store)
736 shift
737 store_stash "$@"
738 ;;
e25d5f9c
BC
739drop)
740 shift
741 drop_stash "$@"
742 ;;
bd56ff54
BC
743pop)
744 shift
f276872d 745 pop_stash "$@"
bd56ff54 746 ;;
656b5034
AMS
747branch)
748 shift
749 apply_to_branch "$@"
750 ;;
f2c66ed1 751*)
3c2eb80f
MM
752 case $# in
753 0)
1ada5020 754 push_stash &&
5a175871 755 say "$(gettext "(To restore them type \"git stash apply\")")"
ea41cfc4
JS
756 ;;
757 *)
683befa1 758 usage
ea41cfc4 759 esac
9f62e18a 760 ;;
f2c66ed1 761esac