summaryrefslogtreecommitdiffstats
path: root/git-stash.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2008-08-16 10:23:18 +0000
committerJunio C Hamano <junio@hera.kernel.org>2008-08-16 10:23:18 +0000
commit9e96a1aba0e46aba28ff6eaae57784ea5d94b0fb (patch)
treeca388b51d49dec91fdfbefb1af3c6c7c365463d3 /git-stash.txt
parent92a4abda8aa6d2589c4626a0ce37a614680ae905 (diff)
downloadgit-htmldocs-9e96a1aba0e46aba28ff6eaae57784ea5d94b0fb.tar.gz
Autogenerated HTML docs for v1.6.0-rc3-17-gc14c8
Diffstat (limited to 'git-stash.txt')
-rw-r--r--git-stash.txt13
1 files changed, 10 insertions, 3 deletions
diff --git a/git-stash.txt b/git-stash.txt
index 7d50d74cc..49e2296a2 100644
--- a/git-stash.txt
+++ b/git-stash.txt
@@ -8,11 +8,13 @@ git-stash - Stash the changes in a dirty working directory away
SYNOPSIS
--------
[verse]
-'git stash' list
-'git stash' (show | apply | drop | pop ) [<stash>]
+'git stash' list [<options>]
+'git stash' (show | drop | pop ) [<stash>]
+'git stash' apply [--index] [<stash>]
'git stash' branch <branchname> [<stash>]
-'git stash' [save [<message>]]
+'git stash' [save [--keep-index] [<message>]]
'git stash' clear
+'git stash' create
DESCRIPTION
-----------
@@ -116,6 +118,11 @@ pop [<stash>]::
of the current working tree state. When no `<stash>` is given,
`stash@\{0}` is assumed. See also `apply`.
+create::
+
+ Create a stash (which is a regular commit object) and return its
+ object name, without storing it anywhere in the ref namespace.
+
DISCUSSION
----------