2007-07-01 07:26:08 +02:00
|
|
|
git-stash(1)
|
|
|
|
============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-stash - Stash the changes in a dirty working directory away
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
2008-08-16 05:27:31 +02:00
|
|
|
'git stash' list [<options>]
|
2009-06-18 03:07:37 +02:00
|
|
|
'git stash' show [<stash>]
|
|
|
|
'git stash' drop [-q|--quiet] [<stash>]
|
|
|
|
'git stash' ( pop | apply ) [--index] [-q|--quiet] [<stash>]
|
2008-07-03 08:16:05 +02:00
|
|
|
'git stash' branch <branchname> [<stash>]
|
2011-06-25 02:56:06 +02:00
|
|
|
'git stash' [save [--patch] [-k|--[no-]keep-index] [-q|--quiet]
|
|
|
|
[-u|--include-untracked] [-a|--all] [<message>]]
|
2008-07-03 08:16:05 +02:00
|
|
|
'git stash' clear
|
2008-08-16 05:27:31 +02:00
|
|
|
'git stash' create
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
2010-01-07 17:49:12 +01:00
|
|
|
Use `git stash` when you want to record the current state of the
|
2007-07-01 07:26:08 +02:00
|
|
|
working directory and the index, but want to go back to a clean
|
|
|
|
working directory. The command saves your local modifications away
|
|
|
|
and reverts the working directory to match the `HEAD` commit.
|
|
|
|
|
|
|
|
The modifications stashed away by this command can be listed with
|
2008-06-30 20:56:34 +02:00
|
|
|
`git stash list`, inspected with `git stash show`, and restored
|
|
|
|
(potentially on top of a different commit) with `git stash apply`.
|
|
|
|
Calling `git stash` without any arguments is equivalent to `git stash save`.
|
|
|
|
A stash is by default listed as "WIP on 'branchname' ...", but
|
2007-07-17 10:15:42 +02:00
|
|
|
you can give a more descriptive message on the command line when
|
|
|
|
you create one.
|
2007-07-01 07:26:08 +02:00
|
|
|
|
docs: don't talk about $GIT_DIR/refs/ everywhere
It is misleading to say that we pull refs from $GIT_DIR/refs/*, because we
may also consult the packed refs mechanism. These days we tend to treat
the "refs hierarchy" as more of an abstract namespace that happens to be
represented as $GIT_DIR/refs. At best, this is a minor inaccuracy, but at
worst it can confuse users who then look in $GIT_DIR/refs and find that it
is missing some of the refs they expected to see.
This patch drops most uses of "$GIT_DIR/refs/*", changing them into just
"refs/*", under the assumption that users can handle the concept of an
abstract refs namespace. There are a few things to note:
- most cases just dropped the $GIT_DIR/ portion. But for cases where
that left _just_ the word "refs", I changed it to "refs/" to help
indicate that it was a hierarchy. I didn't do the same for longer
paths (e.g., "refs/heads" remained, instead of becoming
"refs/heads/").
- in some cases, no change was made, as the text was explicitly about
unpacked refs (e.g., the discussion in git-pack-refs).
- In some cases it made sense instead to note the existence of packed
refs (e.g., in check-ref-format and rev-parse).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2010-02-18 02:16:20 +01:00
|
|
|
The latest stash you created is stored in `refs/stash`; older
|
2007-07-02 00:29:01 +02:00
|
|
|
stashes are found in the reflog of this reference and can be named using
|
2007-08-07 19:39:03 +02:00
|
|
|
the usual reflog syntax (e.g. `stash@\{0}` is the most recently
|
|
|
|
created stash, `stash@\{1}` is the one before it, `stash@\{2.hours.ago}`
|
2007-07-02 00:29:01 +02:00
|
|
|
is also possible).
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2011-06-25 02:56:06 +02:00
|
|
|
save [-p|--patch] [--[no-]keep-index] [-u|--include-untracked] [-a|--all] [-q|--quiet] [<message>]::
|
2007-07-01 07:26:08 +02:00
|
|
|
|
2008-06-30 08:09:04 +02:00
|
|
|
Save your local modifications to a new 'stash', and run `git reset
|
2009-08-18 23:38:40 +02:00
|
|
|
--hard` to revert them. The <message> part is optional and gives
|
|
|
|
the description along with the stashed state. For quickly making
|
|
|
|
a snapshot, you can omit _both_ "save" and <message>, but giving
|
|
|
|
only <message> does not trigger this action to prevent a misspelled
|
|
|
|
subcommand from making an unwanted stash.
|
2008-06-27 16:37:15 +02:00
|
|
|
+
|
|
|
|
If the `--keep-index` option is used, all changes already added to the
|
|
|
|
index are left intact.
|
2009-08-13 14:29:44 +02:00
|
|
|
+
|
2011-06-25 02:56:06 +02:00
|
|
|
If the `--include-untracked` option is used, all untracked files are also
|
|
|
|
stashed and then cleaned up with `git clean`, leaving the working directory
|
|
|
|
in a very clean state. If the `--all` option is used instead then the
|
|
|
|
ignored files are stashed and cleaned in addition to the untracked files.
|
|
|
|
+
|
2011-05-05 20:48:47 +02:00
|
|
|
With `--patch`, you can interactively select hunks from the diff
|
2009-08-13 14:29:44 +02:00
|
|
|
between HEAD and the working tree to be stashed. The stash entry is
|
|
|
|
constructed such that its index state is the same as the index state
|
|
|
|
of your repository, and its worktree contains only the changes you
|
|
|
|
selected interactively. The selected changes are then rolled back
|
2011-05-05 20:48:47 +02:00
|
|
|
from your worktree. See the ``Interactive Mode'' section of
|
|
|
|
linkgit:git-add[1] to learn how to operate the `\--patch` mode.
|
2009-08-13 14:29:44 +02:00
|
|
|
+
|
|
|
|
The `--patch` option implies `--keep-index`. You can use
|
|
|
|
`--no-keep-index` to override this.
|
2007-07-01 07:26:08 +02:00
|
|
|
|
2008-02-20 12:31:35 +01:00
|
|
|
list [<options>]::
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
List the stashes that you currently have. Each 'stash' is listed
|
2007-08-07 19:38:29 +02:00
|
|
|
with its name (e.g. `stash@\{0}` is the latest stash, `stash@\{1}` is
|
2007-07-02 00:29:01 +02:00
|
|
|
the one before, etc.), the name of the branch that was current when the
|
2007-07-01 07:26:08 +02:00
|
|
|
stash was made, and a short description of the commit the stash was
|
|
|
|
based on.
|
|
|
|
+
|
|
|
|
----------------------------------------------------------------
|
2007-07-17 10:15:42 +02:00
|
|
|
stash@{0}: WIP on submit: 6ebd0e2... Update git-stash documentation
|
|
|
|
stash@{1}: On master: 9cc0589... Add git-stash
|
2007-07-01 07:26:08 +02:00
|
|
|
----------------------------------------------------------------
|
2008-02-20 12:31:35 +01:00
|
|
|
+
|
2010-01-10 00:33:00 +01:00
|
|
|
The command takes options applicable to the 'git log'
|
2009-10-19 17:48:12 +02:00
|
|
|
command to control what is shown and how. See linkgit:git-log[1].
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
show [<stash>]::
|
|
|
|
|
2007-10-09 23:00:03 +02:00
|
|
|
Show the changes recorded in the stash as a diff between the
|
2007-07-02 00:29:01 +02:00
|
|
|
stashed state and its original parent. When no `<stash>` is given,
|
|
|
|
shows the latest one. By default, the command shows the diffstat, but
|
2010-01-10 00:33:00 +01:00
|
|
|
it will accept any format known to 'git diff' (e.g., `git stash show
|
2007-08-07 19:39:03 +02:00
|
|
|
-p stash@\{1}` to view the second most recent stash in patch form).
|
2007-07-01 07:26:08 +02:00
|
|
|
|
2009-06-18 03:07:37 +02:00
|
|
|
pop [--index] [-q|--quiet] [<stash>]::
|
2007-07-01 07:26:08 +02:00
|
|
|
|
2009-05-28 11:40:15 +02:00
|
|
|
Remove a single stashed state from the stash list and apply it
|
|
|
|
on top of the current working tree state, i.e., do the inverse
|
|
|
|
operation of `git stash save`. The working directory must
|
|
|
|
match the index.
|
2007-07-02 00:29:01 +02:00
|
|
|
+
|
2009-05-28 11:40:15 +02:00
|
|
|
Applying the state can fail with conflicts; in this case, it is not
|
|
|
|
removed from the stash list. You need to resolve the conflicts by hand
|
|
|
|
and call `git stash drop` manually afterwards.
|
|
|
|
+
|
2007-10-01 00:30:27 +02:00
|
|
|
If the `--index` option is used, then tries to reinstate not only the working
|
|
|
|
tree's changes, but also the index's ones. However, this can fail, when you
|
|
|
|
have conflicts (which are stored in the index, where you therefore can no
|
|
|
|
longer apply the changes as they were originally).
|
2009-06-09 00:57:06 +02:00
|
|
|
+
|
2010-08-21 06:09:04 +02:00
|
|
|
When no `<stash>` is given, `stash@\{0}` is assumed, otherwise `<stash>` must
|
|
|
|
be a reference of the form `stash@\{<revision>}`.
|
2009-06-09 00:57:06 +02:00
|
|
|
|
2009-06-18 03:07:37 +02:00
|
|
|
apply [--index] [-q|--quiet] [<stash>]::
|
2009-06-09 00:57:06 +02:00
|
|
|
|
2010-08-21 06:09:04 +02:00
|
|
|
Like `pop`, but do not remove the state from the stash list. Unlike `pop`,
|
|
|
|
`<stash>` may be any commit that looks like a commit created by
|
|
|
|
`stash save` or `stash create`.
|
2007-07-01 07:26:08 +02:00
|
|
|
|
2008-07-03 08:16:05 +02:00
|
|
|
branch <branchname> [<stash>]::
|
|
|
|
|
|
|
|
Creates and checks out a new branch named `<branchname>` starting from
|
|
|
|
the commit at which the `<stash>` was originally created, applies the
|
2010-08-21 06:09:04 +02:00
|
|
|
changes recorded in `<stash>` to the new working tree and index.
|
|
|
|
If that succeeds, and `<stash>` is a reference of the form
|
|
|
|
`stash@{<revision>}`, it then drops the `<stash>`. When no `<stash>`
|
2008-07-03 08:16:05 +02:00
|
|
|
is given, applies the latest one.
|
|
|
|
+
|
|
|
|
This is useful if the branch on which you ran `git stash save` has
|
|
|
|
changed enough that `git stash apply` fails due to conflicts. Since
|
|
|
|
the stash is applied on top of the commit that was HEAD at the time
|
|
|
|
`git stash` was run, it restores the originally stashed state with
|
|
|
|
no conflicts.
|
|
|
|
|
2007-07-01 07:26:08 +02:00
|
|
|
clear::
|
2007-07-02 00:29:01 +02:00
|
|
|
Remove all the stashed states. Note that those states will then
|
2009-08-09 02:47:36 +02:00
|
|
|
be subject to pruning, and may be impossible to recover (see
|
|
|
|
'Examples' below for a possible strategy).
|
2007-07-01 07:26:08 +02:00
|
|
|
|
2009-06-18 03:07:37 +02:00
|
|
|
drop [-q|--quiet] [<stash>]::
|
2008-02-22 20:04:54 +01:00
|
|
|
|
|
|
|
Remove a single stashed state from the stash list. When no `<stash>`
|
2010-08-21 06:09:04 +02:00
|
|
|
is given, it removes the latest one. i.e. `stash@\{0}`, otherwise
|
|
|
|
`<stash>` must a valid stash log reference of the form
|
|
|
|
`stash@\{<revision>}`.
|
2008-02-22 20:04:54 +01:00
|
|
|
|
2008-08-16 05:27:31 +02:00
|
|
|
create::
|
|
|
|
|
|
|
|
Create a stash (which is a regular commit object) and return its
|
|
|
|
object name, without storing it anywhere in the ref namespace.
|
|
|
|
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
DISCUSSION
|
|
|
|
----------
|
|
|
|
|
|
|
|
A stash is represented as a commit whose tree records the state of the
|
|
|
|
working directory, and its first parent is the commit at `HEAD` when
|
|
|
|
the stash was created. The tree of the second parent records the
|
|
|
|
state of the index when the stash is made, and it is made a child of
|
|
|
|
the `HEAD` commit. The ancestry graph looks like this:
|
|
|
|
|
|
|
|
.----W
|
|
|
|
/ /
|
2007-07-05 07:09:20 +02:00
|
|
|
-----H----I
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
where `H` is the `HEAD` commit, `I` is a commit that records the state
|
|
|
|
of the index, and `W` is a commit that records the state of the working
|
|
|
|
tree.
|
|
|
|
|
|
|
|
|
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
|
|
|
|
Pulling into a dirty tree::
|
|
|
|
|
|
|
|
When you are in the middle of something, you learn that there are
|
2007-07-02 00:29:01 +02:00
|
|
|
upstream changes that are possibly relevant to what you are
|
|
|
|
doing. When your local changes do not conflict with the changes in
|
2007-07-01 07:26:08 +02:00
|
|
|
the upstream, a simple `git pull` will let you move forward.
|
|
|
|
+
|
|
|
|
However, there are cases in which your local changes do conflict with
|
|
|
|
the upstream changes, and `git pull` refuses to overwrite your
|
2007-07-02 00:29:01 +02:00
|
|
|
changes. In such a case, you can stash your changes away,
|
2007-07-01 07:26:08 +02:00
|
|
|
perform a pull, and then unstash, like this:
|
|
|
|
+
|
|
|
|
----------------------------------------------------------------
|
|
|
|
$ git pull
|
2008-09-02 03:35:24 +02:00
|
|
|
...
|
2007-07-01 07:26:08 +02:00
|
|
|
file foobar not up to date, cannot merge.
|
|
|
|
$ git stash
|
|
|
|
$ git pull
|
2009-05-28 11:40:15 +02:00
|
|
|
$ git stash pop
|
2007-07-01 07:26:08 +02:00
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
Interrupted workflow::
|
|
|
|
|
|
|
|
When you are in the middle of something, your boss comes in and
|
2007-07-02 00:29:01 +02:00
|
|
|
demands that you fix something immediately. Traditionally, you would
|
2007-07-01 07:26:08 +02:00
|
|
|
make a commit to a temporary branch to store your changes away, and
|
2007-07-02 00:29:01 +02:00
|
|
|
return to your original branch to make the emergency fix, like this:
|
2007-07-01 07:26:08 +02:00
|
|
|
+
|
|
|
|
----------------------------------------------------------------
|
2008-09-02 03:35:24 +02:00
|
|
|
# ... hack hack hack ...
|
2007-07-01 07:26:08 +02:00
|
|
|
$ git checkout -b my_wip
|
|
|
|
$ git commit -a -m "WIP"
|
|
|
|
$ git checkout master
|
|
|
|
$ edit emergency fix
|
|
|
|
$ git commit -a -m "Fix in a hurry"
|
|
|
|
$ git checkout my_wip
|
|
|
|
$ git reset --soft HEAD^
|
2008-09-02 03:35:24 +02:00
|
|
|
# ... continue hacking ...
|
2007-07-01 07:26:08 +02:00
|
|
|
----------------------------------------------------------------
|
|
|
|
+
|
2010-01-10 00:33:00 +01:00
|
|
|
You can use 'git stash' to simplify the above, like this:
|
2007-07-01 07:26:08 +02:00
|
|
|
+
|
|
|
|
----------------------------------------------------------------
|
2008-09-02 03:35:24 +02:00
|
|
|
# ... hack hack hack ...
|
2007-07-01 07:26:08 +02:00
|
|
|
$ git stash
|
|
|
|
$ edit emergency fix
|
|
|
|
$ git commit -a -m "Fix in a hurry"
|
2009-05-28 11:40:15 +02:00
|
|
|
$ git stash pop
|
2008-09-02 03:35:24 +02:00
|
|
|
# ... continue hacking ...
|
2007-07-01 07:26:08 +02:00
|
|
|
----------------------------------------------------------------
|
|
|
|
|
2008-06-27 16:37:15 +02:00
|
|
|
Testing partial commits::
|
|
|
|
|
|
|
|
You can use `git stash save --keep-index` when you want to make two or
|
|
|
|
more commits out of the changes in the work tree, and you want to test
|
|
|
|
each change before committing:
|
|
|
|
+
|
|
|
|
----------------------------------------------------------------
|
2008-09-02 03:35:24 +02:00
|
|
|
# ... hack hack hack ...
|
2008-07-08 09:40:56 +02:00
|
|
|
$ git add --patch foo # add just first part to the index
|
|
|
|
$ git stash save --keep-index # save all other changes to the stash
|
|
|
|
$ edit/build/test first part
|
2008-09-02 03:45:01 +02:00
|
|
|
$ git commit -m 'First part' # commit fully tested change
|
2008-07-08 09:40:56 +02:00
|
|
|
$ git stash pop # prepare to work on all other changes
|
2008-09-02 03:35:24 +02:00
|
|
|
# ... repeat above five steps until one commit remains ...
|
2008-07-08 09:40:56 +02:00
|
|
|
$ edit/build/test remaining parts
|
|
|
|
$ git commit foo -m 'Remaining parts'
|
2008-06-27 16:37:15 +02:00
|
|
|
----------------------------------------------------------------
|
|
|
|
|
2009-08-09 02:47:36 +02:00
|
|
|
Recovering stashes that were cleared/dropped erroneously::
|
|
|
|
|
|
|
|
If you mistakenly drop or clear stashes, they cannot be recovered
|
|
|
|
through the normal safety mechanisms. However, you can try the
|
|
|
|
following incantation to get a list of stashes that are still in your
|
|
|
|
repository, but not reachable any more:
|
|
|
|
+
|
|
|
|
----------------------------------------------------------------
|
|
|
|
git fsck --unreachable |
|
|
|
|
grep commit | cut -d\ -f3 |
|
|
|
|
xargs git log --merges --no-walk --grep=WIP
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2007-07-01 07:26:08 +02:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-checkout[1],
|
|
|
|
linkgit:git-commit[1],
|
|
|
|
linkgit:git-reflog[1],
|
|
|
|
linkgit:git-reset[1]
|
2007-07-01 07:26:08 +02:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|