@ -8,32 +8,32 @@ git-stash - Stash the changes in a dirty working directory away
@@ -8,32 +8,32 @@ git-stash - Stash the changes in a dirty working directory away
SYNOPSIS
--------
[verse]
'git-stash'
'git-stash' [list | show [<stash>] | apply [<stash>] | clear]
'git-stash' (save | list | show [<stash>] | apply [<stash>] | clear)
DESCRIPTION
-----------
Use 'git-stash' when you want to record the current state of the
Use 'git-stash save' when you want to record the current state of the
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
`git-stash list`, inspected with `git-stash show`, and restored
(potentially on top of a different commit) with `git-stash apply`
commands. The default operation when called without options is to
save the changes away.
(potentially on top of a different commit) with `git-stash apply`.
The default operation when called without options is to save the
changes away.
The latest stash you created is stored in `$GIT_DIR/refs/stash`; older
stashes are found in the reflog of this refererence and can be named using
the usual reflog syntax (e.g. `stash@{1}` is the stash one previously made,
`stash@{2}` is the one before it, `stash@{2.hours.ago}` is also possible).
stashes are found in the reflog of this reference and can be named using
the usual reflog syntax (e.g. `stash@{1}` is the most recently
created stash, `stash@{2}` is the one before it, `stash@{2.hours.ago}`
is also possible).
OPTIONS
-------
(no subcommand)::
save::
Save your local modifications to a new 'stash', and run `git-reset
--hard` to revert them.
@ -42,7 +42,7 @@ list::
@@ -42,7 +42,7 @@ list::
List the stashes that you currently have. Each 'stash' is listed
with its name (e.g. `stash@{0}` is the latest stash, `stash@{1} is
the one before), the name of the branch that was current when the
the one before, etc.), the name of the branch that was current when the
stash was made, and a short description of the commit the stash was