]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-stash.txt
Documentation: fix reference to a for-each-ref option
[thirdparty/git.git] / Documentation / git-stash.txt
CommitLineData
09ccdb63
NS
1git-stash(1)
2============
3
4NAME
5----
6git-stash - Stash the changes in a dirty working directory away
7
8SYNOPSIS
9--------
10[verse]
a5ab00c5
SB
11'git stash' list [<options>]
12'git stash' (show | drop | pop ) [<stash>]
13'git stash' apply [--index] [<stash>]
656b5034 14'git stash' branch <branchname> [<stash>]
a5ab00c5 15'git stash' [save [--keep-index] [<message>]]
656b5034 16'git stash' clear
a5ab00c5 17'git stash' create
09ccdb63
NS
18
19DESCRIPTION
20-----------
21
b1889c36 22Use 'git stash' when you want to record the current state of the
09ccdb63
NS
23working directory and the index, but want to go back to a clean
24working directory. The command saves your local modifications away
25and reverts the working directory to match the `HEAD` commit.
26
27The modifications stashed away by this command can be listed with
483bc4f0
JN
28`git stash list`, inspected with `git stash show`, and restored
29(potentially on top of a different commit) with `git stash apply`.
30Calling `git stash` without any arguments is equivalent to `git stash save`.
31A stash is by default listed as "WIP on 'branchname' ...", but
ec96e0f6
NS
32you can give a more descriptive message on the command line when
33you create one.
09ccdb63
NS
34
35The latest stash you created is stored in `$GIT_DIR/refs/stash`; older
9488e875 36stashes are found in the reflog of this reference and can be named using
e2c6de1c
SH
37the usual reflog syntax (e.g. `stash@\{0}` is the most recently
38created stash, `stash@\{1}` is the one before it, `stash@\{2.hours.ago}`
9488e875 39is also possible).
09ccdb63
NS
40
41OPTIONS
42-------
43
7bedebca 44save [--keep-index] [<message>]::
09ccdb63 45
b1889c36 46 Save your local modifications to a new 'stash', and run `git reset
fcb10a96 47 --hard` to revert them. This is the default action when no
71bda8b9
JA
48 subcommand is given. The <message> part is optional and gives
49 the description along with the stashed state.
7bedebca
SG
50+
51If the `--keep-index` option is used, all changes already added to the
52index are left intact.
09ccdb63 53
fbd538c2 54list [<options>]::
09ccdb63
NS
55
56 List the stashes that you currently have. Each 'stash' is listed
36717575 57 with its name (e.g. `stash@\{0}` is the latest stash, `stash@\{1}` is
9488e875 58 the one before, etc.), the name of the branch that was current when the
09ccdb63
NS
59 stash was made, and a short description of the commit the stash was
60 based on.
61+
62----------------------------------------------------------------
ec96e0f6
NS
63stash@{0}: WIP on submit: 6ebd0e2... Update git-stash documentation
64stash@{1}: On master: 9cc0589... Add git-stash
09ccdb63 65----------------------------------------------------------------
fbd538c2 66+
ba020ef5 67The command takes options applicable to the 'git-log'
483bc4f0 68command to control what is shown and how. See linkgit:git-log[1].
09ccdb63
NS
69
70show [<stash>]::
71
06ada152 72 Show the changes recorded in the stash as a diff between the
9488e875
JH
73 stashed state and its original parent. When no `<stash>` is given,
74 shows the latest one. By default, the command shows the diffstat, but
ba020ef5 75 it will accept any format known to 'git-diff' (e.g., `git stash show
e2c6de1c 76 -p stash@\{1}` to view the second most recent stash in patch form).
09ccdb63 77
0bdcac56 78apply [--index] [<stash>]::
09ccdb63 79
9488e875 80 Restore the changes recorded in the stash on top of the current
09ccdb63 81 working tree state. When no `<stash>` is given, applies the latest
9488e875
JH
82 one. The working directory must match the index.
83+
84This operation can fail with conflicts; you need to resolve them
85by hand in the working tree.
0bdcac56
MV
86+
87If the `--index` option is used, then tries to reinstate not only the working
88tree's changes, but also the index's ones. However, this can fail, when you
89have conflicts (which are stored in the index, where you therefore can no
90longer apply the changes as they were originally).
09ccdb63 91
656b5034
AMS
92branch <branchname> [<stash>]::
93
94 Creates and checks out a new branch named `<branchname>` starting from
95 the commit at which the `<stash>` was originally created, applies the
96 changes recorded in `<stash>` to the new working tree and index, then
97 drops the `<stash>` if that completes successfully. When no `<stash>`
98 is given, applies the latest one.
99+
100This is useful if the branch on which you ran `git stash save` has
101changed enough that `git stash apply` fails due to conflicts. Since
102the stash is applied on top of the commit that was HEAD at the time
103`git stash` was run, it restores the originally stashed state with
104no conflicts.
105
09ccdb63 106clear::
9488e875
JH
107 Remove all the stashed states. Note that those states will then
108 be subject to pruning, and may be difficult or impossible to recover.
09ccdb63 109
e25d5f9c
BC
110drop [<stash>]::
111
112 Remove a single stashed state from the stash list. When no `<stash>`
113 is given, it removes the latest one. i.e. `stash@\{0}`
114
bd56ff54
BC
115pop [<stash>]::
116
117 Remove a single stashed state from the stash list and apply on top
118 of the current working tree state. When no `<stash>` is given,
119 `stash@\{0}` is assumed. See also `apply`.
120
a5ab00c5
SB
121create::
122
123 Create a stash (which is a regular commit object) and return its
124 object name, without storing it anywhere in the ref namespace.
125
09ccdb63
NS
126
127DISCUSSION
128----------
129
130A stash is represented as a commit whose tree records the state of the
131working directory, and its first parent is the commit at `HEAD` when
132the stash was created. The tree of the second parent records the
133state of the index when the stash is made, and it is made a child of
134the `HEAD` commit. The ancestry graph looks like this:
135
136 .----W
137 / /
114fd812 138 -----H----I
09ccdb63
NS
139
140where `H` is the `HEAD` commit, `I` is a commit that records the state
141of the index, and `W` is a commit that records the state of the working
142tree.
143
144
145EXAMPLES
146--------
147
148Pulling into a dirty tree::
149
150When you are in the middle of something, you learn that there are
9488e875
JH
151upstream changes that are possibly relevant to what you are
152doing. When your local changes do not conflict with the changes in
09ccdb63
NS
153the upstream, a simple `git pull` will let you move forward.
154+
155However, there are cases in which your local changes do conflict with
156the upstream changes, and `git pull` refuses to overwrite your
9488e875 157changes. In such a case, you can stash your changes away,
09ccdb63
NS
158perform a pull, and then unstash, like this:
159+
160----------------------------------------------------------------
161$ git pull
162...
163file foobar not up to date, cannot merge.
164$ git stash
165$ git pull
166$ git stash apply
167----------------------------------------------------------------
168
169Interrupted workflow::
170
171When you are in the middle of something, your boss comes in and
9488e875 172demands that you fix something immediately. Traditionally, you would
09ccdb63 173make a commit to a temporary branch to store your changes away, and
9488e875 174return to your original branch to make the emergency fix, like this:
09ccdb63
NS
175+
176----------------------------------------------------------------
177... hack hack hack ...
178$ git checkout -b my_wip
179$ git commit -a -m "WIP"
180$ git checkout master
181$ edit emergency fix
182$ git commit -a -m "Fix in a hurry"
183$ git checkout my_wip
184$ git reset --soft HEAD^
185... continue hacking ...
186----------------------------------------------------------------
187+
ba020ef5 188You can use 'git-stash' to simplify the above, like this:
09ccdb63
NS
189+
190----------------------------------------------------------------
191... hack hack hack ...
192$ git stash
193$ edit emergency fix
194$ git commit -a -m "Fix in a hurry"
195$ git stash apply
196... continue hacking ...
197----------------------------------------------------------------
198
7bedebca
SG
199Testing partial commits::
200
201You can use `git stash save --keep-index` when you want to make two or
202more commits out of the changes in the work tree, and you want to test
203each change before committing:
204+
205----------------------------------------------------------------
206... hack hack hack ...
caf18996
ER
207$ git add --patch foo # add just first part to the index
208$ git stash save --keep-index # save all other changes to the stash
209$ edit/build/test first part
210$ git commit foo -m 'First part' # commit fully tested change
211$ git stash pop # prepare to work on all other changes
212... repeat above five steps until one commit remains ...
213$ edit/build/test remaining parts
214$ git commit foo -m 'Remaining parts'
7bedebca
SG
215----------------------------------------------------------------
216
09ccdb63
NS
217SEE ALSO
218--------
5162e697
DM
219linkgit:git-checkout[1],
220linkgit:git-commit[1],
221linkgit:git-reflog[1],
222linkgit:git-reset[1]
09ccdb63
NS
223
224AUTHOR
225------
226Written by Nanako Shiraishi <nanako3@bluebottle.com>
227
228GIT
229---
9e1f0a85 230Part of the linkgit:git[1] suite