diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-10-31 13:15:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-10-31 13:15:22 -0700 |
commit | 9fa1f902bf8eaaa2a1d78cd7603d28a33d46e30c (patch) | |
tree | df762a519ef1685edeb30a530149795e243769ff /Documentation | |
parent | cabb79d8c1c5e4f81f3435603f17c74480888395 (diff) | |
parent | a56c8f5aab5a6ffdd687de5134883df60cc4c919 (diff) | |
download | git-9fa1f902bf8eaaa2a1d78cd7603d28a33d46e30c.tar.gz git-9fa1f902bf8eaaa2a1d78cd7603d28a33d46e30c.tar.xz |
Merge branch 'aw/numbered-stash'
The user always has to say "stash@{$N}" when naming a single
element in the default location of the stash, i.e. reflogs in
refs/stash. The "git stash" command learned to accept "git stash
apply 4" as a short-hand for "git stash apply stash@{4}".
* aw/numbered-stash:
stash: allow stashes to be referenced by index only
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-stash.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-stash.txt b/Documentation/git-stash.txt index 92df596e5..2e9cef06e 100644 --- a/Documentation/git-stash.txt +++ b/Documentation/git-stash.txt @@ -39,7 +39,8 @@ The latest stash you created is stored in `refs/stash`; older stashes are found in the reflog of this reference and can be named using 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}` -is also possible). +is also possible). Stashes may also be referenced by specifying just the +stash index (e.g. the integer `n` is equivalent to `stash@{n}`). OPTIONS ------- |