]> git.ipfire.org Git - thirdparty/git.git/blame - git-stash.sh
i18n: git-stash die + gettext messages
[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>]
dc89689e 10 or: $dashless [save [--patch] [-k|--[no-]keep-index] [-q|--quiet] [<message>]]
a5ab00c5 11 or: $dashless clear"
f2c66ed1 12
3cd2491a 13SUBDIRECTORY_OK=Yes
8f321a39 14OPTIONS_SPEC=
26b59b48 15START_DIR=`pwd`
f2c66ed1 16. git-sh-setup
8a583bec 17. git-sh-i18n
f2c66ed1 18require_work_tree
ceff079b 19cd_to_toplevel
f2c66ed1
NS
20
21TMP="$GIT_DIR/.git-stash.$$"
3ba2e865
JS
22TMPindex=${GIT_INDEX_FILE-"$GIT_DIR/index"}.stash.$$
23trap 'rm -f "$TMP-"* "$TMPindex"' 0
f2c66ed1
NS
24
25ref_stash=refs/stash
26
dda1f2a5
TR
27if git config --get-colorbool color.interactive; then
28 help_color="$(git config --get-color color.interactive.help 'red bold')"
29 reset_color="$(git config --get-color '' reset)"
30else
31 help_color=
32 reset_color=
33fi
34
f2c66ed1 35no_changes () {
6848d58c
JS
36 git diff-index --quiet --cached HEAD --ignore-submodules -- &&
37 git diff-files --quiet --ignore-submodules
f2c66ed1
NS
38}
39
40clear_stash () {
3023dc69
JH
41 if test $# != 0
42 then
b1440ce2 43 die "$(gettext "git stash clear with parameters is unimplemented")"
3023dc69 44 fi
0e32126f 45 if current=$(git rev-parse --verify $ref_stash 2>/dev/null)
7ab3cc70 46 then
a9ee9bf9 47 git update-ref -d $ref_stash $current
7ab3cc70 48 fi
f2c66ed1
NS
49}
50
bc9e7399 51create_stash () {
9f62e18a
JH
52 stash_msg="$1"
53
1eff26c0 54 git update-index -q --refresh
f2c66ed1
NS
55 if no_changes
56 then
f2c66ed1
NS
57 exit 0
58 fi
f12e925a 59
f2c66ed1 60 # state of the base commit
5be60078 61 if b_commit=$(git rev-parse --verify HEAD)
f2c66ed1 62 then
b0e621ad 63 head=$(git rev-list --oneline -n 1 HEAD --)
f2c66ed1 64 else
b1440ce2 65 die "$(gettext "You do not have the initial commit yet")"
f2c66ed1
NS
66 fi
67
5be60078 68 if branch=$(git symbolic-ref -q HEAD)
f2c66ed1
NS
69 then
70 branch=${branch#refs/heads/}
71 else
72 branch='(no branch)'
73 fi
74 msg=$(printf '%s: %s' "$branch" "$head")
75
76 # state of the index
5be60078 77 i_tree=$(git write-tree) &&
6143fa2c 78 i_commit=$(printf 'index on %s\n' "$msg" |
5be60078 79 git commit-tree $i_tree -p $b_commit) ||
b1440ce2 80 die "$(gettext "Cannot save the current index state")"
f2c66ed1 81
dda1f2a5
TR
82 if test -z "$patch_mode"
83 then
84
85 # state of the working tree
86 w_tree=$( (
3ba2e865
JS
87 git read-tree --index-output="$TMPindex" -m $i_tree &&
88 GIT_INDEX_FILE="$TMPindex" &&
dda1f2a5 89 export GIT_INDEX_FILE &&
7aa5d43c 90 git diff --name-only -z HEAD | git update-index -z --add --remove --stdin &&
dda1f2a5 91 git write-tree &&
3ba2e865 92 rm -f "$TMPindex"
dda1f2a5 93 ) ) ||
b1440ce2 94 die "$(gettext "Cannot save the current worktree state")"
dda1f2a5
TR
95
96 else
97
b24f56d6 98 rm -f "$TMP-index" &&
dda1f2a5
TR
99 GIT_INDEX_FILE="$TMP-index" git read-tree HEAD &&
100
101 # find out what the user wants
102 GIT_INDEX_FILE="$TMP-index" \
103 git add--interactive --patch=stash -- &&
104
105 # state of the working tree
106 w_tree=$(GIT_INDEX_FILE="$TMP-index" git write-tree) ||
b1440ce2 107 die "$(gettext "Cannot save the current worktree state")"
f2c66ed1 108
dda1f2a5
TR
109 git diff-tree -p HEAD $w_tree > "$TMP-patch" &&
110 test -s "$TMP-patch" ||
b1440ce2 111 die "$(gettext "No changes selected")"
dda1f2a5
TR
112
113 rm -f "$TMP-index" ||
b1440ce2 114 die "$(gettext "Cannot remove temporary index (can't happen)")"
dda1f2a5
TR
115
116 fi
117
f2c66ed1 118 # create the stash
9f62e18a
JH
119 if test -z "$stash_msg"
120 then
121 stash_msg=$(printf 'WIP on %s' "$msg")
122 else
123 stash_msg=$(printf 'On %s: %s' "$branch" "$stash_msg")
124 fi
125 w_commit=$(printf '%s\n' "$stash_msg" |
5be60078 126 git commit-tree $w_tree -p $b_commit -p $i_commit) ||
b1440ce2 127 die "$(gettext "Cannot record working tree state")"
bc9e7399 128}
f2c66ed1 129
bc9e7399 130save_stash () {
7bedebca 131 keep_index=
dda1f2a5 132 patch_mode=
fcdd0e92
SB
133 while test $# != 0
134 do
135 case "$1" in
ea41cfc4 136 -k|--keep-index)
fcdd0e92
SB
137 keep_index=t
138 ;;
dda1f2a5 139 --no-keep-index)
3a243f70 140 keep_index=n
dda1f2a5
TR
141 ;;
142 -p|--patch)
143 patch_mode=t
3a243f70
DM
144 # only default to keep if we don't already have an override
145 test -z "$keep_index" && keep_index=t
fcdd0e92
SB
146 ;;
147 -q|--quiet)
148 GIT_QUIET=t
149 ;;
3c2eb80f
MM
150 --)
151 shift
152 break
153 ;;
154 -*)
155 echo "error: unknown option for 'stash save': $1"
5d005922 156 echo " To provide a message, use git stash save -- '$1'"
3c2eb80f
MM
157 usage
158 ;;
fcdd0e92
SB
159 *)
160 break
161 ;;
162 esac
7bedebca 163 shift
fcdd0e92 164 done
7bedebca 165
47629dcf 166 stash_msg="$*"
bc9e7399 167
1eff26c0 168 git update-index -q --refresh
bc9e7399
JH
169 if no_changes
170 then
5a175871 171 say "$(gettext "No local changes to save")"
bc9e7399
JH
172 exit 0
173 fi
174 test -f "$GIT_DIR/logs/$ref_stash" ||
b1440ce2 175 clear_stash || die "$(gettext "Cannot initialize stash")"
bc9e7399
JH
176
177 create_stash "$stash_msg"
a9ee9bf9
EM
178
179 # Make sure the reflog for stash is kept.
180 : >>"$GIT_DIR/logs/$ref_stash"
f2c66ed1 181
9f62e18a 182 git update-ref -m "$stash_msg" $ref_stash $w_commit ||
b1440ce2 183 die "$(gettext "Cannot save the current status")"
fcdd0e92 184 say Saved working directory and index state "$stash_msg"
7bedebca 185
dda1f2a5 186 if test -z "$patch_mode"
7bedebca 187 then
dda1f2a5
TR
188 git reset --hard ${GIT_QUIET:+-q}
189
3a243f70 190 if test "$keep_index" = "t" && test -n $i_tree
dda1f2a5
TR
191 then
192 git read-tree --reset -u $i_tree
193 fi
194 else
195 git apply -R < "$TMP-patch" ||
b1440ce2 196 die "$(gettext "Cannot remove worktree changes")"
dda1f2a5 197
3a243f70 198 if test "$keep_index" != "t"
dda1f2a5
TR
199 then
200 git reset
201 fi
7bedebca 202 fi
f2c66ed1
NS
203}
204
401de405 205have_stash () {
0e32126f 206 git rev-parse --verify $ref_stash >/dev/null 2>&1
401de405
JK
207}
208
f2c66ed1 209list_stash () {
401de405 210 have_stash || return 0
391c53bd 211 git log --format="%gd: %gs" -g "$@" $ref_stash --
f2c66ed1
NS
212}
213
214show_stash () {
a9bf09e1 215 assert_stash_like "$@"
14cd4581 216
a9bf09e1 217 git diff ${FLAGS:---stat} $b_commit $w_commit
f2c66ed1
NS
218}
219
ef763129
JS
220#
221# Parses the remaining options looking for flags and
222# at most one revision defaulting to ${ref_stash}@{0}
223# if none found.
224#
225# Derives related tree and commit objects from the
226# revision, if one is found.
227#
228# stash records the work tree, and is a merge between the
229# base commit (first parent) and the index tree (second parent).
230#
231# REV is set to the symbolic version of the specified stash-like commit
232# IS_STASH_LIKE is non-blank if ${REV} looks like a stash
233# IS_STASH_REF is non-blank if the ${REV} looks like a stash ref
234# s is set to the SHA1 of the stash commit
235# w_commit is set to the commit containing the working tree
236# b_commit is set to the base commit
237# i_commit is set to the commit containing the index tree
238# w_tree is set to the working tree
239# b_tree is set to the base tree
240# i_tree is set to the index tree
241#
242# GIT_QUIET is set to t if -q is specified
243# INDEX_OPTION is set to --index if --index is specified.
244# FLAGS is set to the remaining flags
245#
246# dies if:
247# * too many revisions specified
248# * no revision is specified and there is no stash stack
249# * a revision is specified which cannot be resolve to a SHA1
250# * a non-existent stash reference is specified
251#
252
253parse_flags_and_rev()
254{
255 test "$PARSE_CACHE" = "$*" && return 0 # optimisation
256 PARSE_CACHE="$*"
257
258 IS_STASH_LIKE=
259 IS_STASH_REF=
260 INDEX_OPTION=
261 s=
262 w_commit=
263 b_commit=
264 i_commit=
265 w_tree=
266 b_tree=
267 i_tree=
268
59d418fe 269 REV=$(git rev-parse --no-flags --symbolic "$@") || exit 1
ef763129
JS
270
271 FLAGS=
2bea593b 272 for opt
ef763129 273 do
2bea593b
JS
274 case "$opt" in
275 -q|--quiet)
276 GIT_QUIET=-t
277 ;;
ef763129
JS
278 --index)
279 INDEX_OPTION=--index
280 ;;
2bea593b
JS
281 -*)
282 FLAGS="${FLAGS}${FLAGS:+ }$opt"
ef763129
JS
283 ;;
284 esac
ef763129
JS
285 done
286
287 set -- $REV
288
289 case $# in
290 0)
b1440ce2 291 have_stash || die "$(gettext "No stash found.")"
ef763129
JS
292 set -- ${ref_stash}@{0}
293 ;;
294 1)
295 :
296 ;;
297 *)
298 die "Too many revisions specified: $REV"
299 ;;
300 esac
301
302 REV=$(git rev-parse --quiet --symbolic --verify $1 2>/dev/null) || die "$1 is not valid reference"
303
304 i_commit=$(git rev-parse --quiet --verify $REV^2 2>/dev/null) &&
305 set -- $(git rev-parse $REV $REV^1 $REV: $REV^1: $REV^2: 2>/dev/null) &&
306 s=$1 &&
307 w_commit=$1 &&
308 b_commit=$2 &&
309 w_tree=$3 &&
310 b_tree=$4 &&
311 i_tree=$5 &&
312 IS_STASH_LIKE=t &&
313 test "$ref_stash" = "$(git rev-parse --symbolic-full-name "${REV%@*}")" &&
314 IS_STASH_REF=t
ef763129
JS
315}
316
317is_stash_like()
318{
319 parse_flags_and_rev "$@"
320 test -n "$IS_STASH_LIKE"
321}
322
323assert_stash_like() {
324 is_stash_like "$@" || die "'$*' is not a stash-like commit"
325}
326
327is_stash_ref() {
328 is_stash_like "$@" && test -n "$IS_STASH_REF"
329}
330
331assert_stash_ref() {
332 is_stash_ref "$@" || die "'$*' is not a stash reference"
333}
334
f2c66ed1 335apply_stash () {
fcdd0e92 336
064ed100 337 assert_stash_like "$@"
f2c66ed1 338
b1440ce2 339 git update-index -q --refresh || die "$(gettext "unable to refresh index")"
5fd448f1
OA
340
341 # current index state
342 c_tree=$(git write-tree) ||
b1440ce2 343 die "$(gettext "Cannot apply a stash in the middle of a merge")"
5fd448f1 344
cbeaccc3 345 unstashed_index_tree=
064ed100 346 if test -n "$INDEX_OPTION" && test "$b_tree" != "$i_tree" &&
7bedebca 347 test "$c_tree" != "$i_tree"
cbeaccc3 348 then
89d750bf 349 git diff-tree --binary $s^2^..$s^2 | git apply --cached
150937c4 350 test $? -ne 0 &&
b1440ce2 351 die "$(gettext "Conflicts in index. Try without --index.")"
52070790 352 unstashed_index_tree=$(git write-tree) ||
b1440ce2 353 die "$(gettext "Could not save index tree")"
150937c4 354 git reset
cbeaccc3 355 fi
150937c4 356
f2c66ed1
NS
357 eval "
358 GITHEAD_$w_tree='Stashed changes' &&
359 GITHEAD_$c_tree='Updated upstream' &&
360 GITHEAD_$b_tree='Version stash was based on' &&
361 export GITHEAD_$w_tree GITHEAD_$c_tree GITHEAD_$b_tree
362 "
363
fcdd0e92
SB
364 if test -n "$GIT_QUIET"
365 then
69ae92bd 366 GIT_MERGE_VERBOSITY=0 && export GIT_MERGE_VERBOSITY
fcdd0e92 367 fi
52070790 368 if git merge-recursive $b_tree -- $c_tree $w_tree
f2c66ed1
NS
369 then
370 # No conflict
cbeaccc3
JH
371 if test -n "$unstashed_index_tree"
372 then
373 git read-tree "$unstashed_index_tree"
83b3df7d
JH
374 else
375 a="$TMP-added" &&
89d750bf 376 git diff-index --cached --name-only --diff-filter=A $c_tree >"$a" &&
83b3df7d
JH
377 git read-tree --reset $c_tree &&
378 git update-index --add --stdin <"$a" ||
b1440ce2 379 die "$(gettext "Cannot unstage modified files")"
83b3df7d 380 rm -f "$a"
cbeaccc3 381 fi
fcdd0e92
SB
382 squelch=
383 if test -n "$GIT_QUIET"
384 then
385 squelch='>/dev/null 2>&1'
386 fi
26b59b48 387 (cd "$START_DIR" && eval "git status $squelch") || :
f2c66ed1
NS
388 else
389 # Merge conflict; keep the exit status from merge-recursive
150937c4 390 status=$?
064ed100 391 if test -n "$INDEX_OPTION"
cbeaccc3 392 then
365c656a
ÆAB
393 (
394 gettext "Index was not unstashed." &&
395 echo
396 ) >&2
cbeaccc3 397 fi
150937c4 398 exit $status
f2c66ed1
NS
399 fi
400}
401
f276872d
JS
402pop_stash() {
403 assert_stash_ref "$@"
404
405 apply_stash "$@" &&
406 drop_stash "$@"
407}
408
e25d5f9c 409drop_stash () {
92e39e44 410 assert_stash_ref "$@"
e25d5f9c 411
92e39e44
JS
412 git reflog delete --updateref --rewrite "${REV}" &&
413 say "Dropped ${REV} ($s)" || die "${REV}: Could not drop stash entry"
e25d5f9c
BC
414
415 # clear_stash if we just dropped the last stash entry
0e32126f 416 git rev-parse --verify "$ref_stash@{0}" > /dev/null 2>&1 || clear_stash
e25d5f9c
BC
417}
418
656b5034 419apply_to_branch () {
b1440ce2 420 test -n "$1" || die "$(gettext "No branch name specified")"
656b5034 421 branch=$1
fb433dc9 422 shift 1
656b5034 423
fb433dc9
JS
424 set -- --index "$@"
425 assert_stash_like "$@"
426
427 git checkout -b $branch $REV^ &&
57693d03
JS
428 apply_stash "$@" && {
429 test -z "$IS_STASH_REF" || drop_stash "$@"
430 }
656b5034
AMS
431}
432
ef763129 433PARSE_CACHE='--not-parsed'
3c2eb80f
MM
434# The default command is "save" if nothing but options are given
435seen_non_option=
436for opt
437do
438 case "$opt" in
439 -*) ;;
440 *) seen_non_option=t; break ;;
441 esac
442done
443
444test -n "$seen_non_option" || set "save" "$@"
445
f2c66ed1
NS
446# Main command set
447case "$1" in
fcb10a96
JH
448list)
449 shift
f2c66ed1
NS
450 list_stash "$@"
451 ;;
452show)
453 shift
454 show_stash "$@"
455 ;;
683befa1
KL
456save)
457 shift
47629dcf 458 save_stash "$@"
683befa1 459 ;;
f2c66ed1
NS
460apply)
461 shift
462 apply_stash "$@"
463 ;;
464clear)
3023dc69
JH
465 shift
466 clear_stash "$@"
f2c66ed1 467 ;;
bc9e7399
JH
468create)
469 if test $# -gt 0 && test "$1" = create
470 then
471 shift
472 fi
473 create_stash "$*" && echo "$w_commit"
474 ;;
e25d5f9c
BC
475drop)
476 shift
477 drop_stash "$@"
478 ;;
bd56ff54
BC
479pop)
480 shift
f276872d 481 pop_stash "$@"
bd56ff54 482 ;;
656b5034
AMS
483branch)
484 shift
485 apply_to_branch "$@"
486 ;;
f2c66ed1 487*)
3c2eb80f
MM
488 case $# in
489 0)
97bc00a4 490 save_stash &&
5a175871 491 say "$(gettext "(To restore them type \"git stash apply\")")"
ea41cfc4
JS
492 ;;
493 *)
683befa1 494 usage
ea41cfc4 495 esac
9f62e18a 496 ;;
f2c66ed1 497esac