From: Thomas Rast <trast@student.ethz.ch>
To: git@vger.kernel.org
Cc: Jeff King <peff@peff.net>,
Daniel Trstenjak <Daniel.Trstenjak@science-computing.de>,
Junio C Hamano <gitster@pobox.com>,
spearce@spearce.org, John Tapsell <johnflux@gmail.com>,
Brian Gernhardt <benji@silverinsanity.com>,
Nanako Shiraishi <nanako3@lavabit.com>
Subject: [RFC PATCH] Documentation: teach stash/pop workflow instead of stash/apply
Date: Thu, 28 May 2009 11:40:15 +0200 [thread overview]
Message-ID: <ef178b42f4db36811e07f1bca4436ed79e550957.1243502202.git.trast@student.ethz.ch> (raw)
In-Reply-To: <20090515021105.GA19241@coredump.intra.peff.net>
Recent discussion on the list showed some comments in favour of a
stash/pop workflow:
http://marc.info/?l=git&m=124234911423358&w=2
http://marc.info/?l=git&m=124235348327711&w=2
Change the stash documentation and examples to document pop in its own
right (and apply in terms of pop), and use stash/pop in the examples.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
---
I meant to write this for a while now, but never got around to it.
Jeff King wrote:
> On Fri, May 15, 2009 at 09:57:20AM +0900, Miles Bader wrote:
> > I don't understand why you say this -- sure "drop" is dangerous, but
> > that's exactly why you should use "pop" instead, because it makes sure
> > the changes are _somewhere_. I found with the old (pre-"pop") stash,
> > I'd often end up in a situation where I'd lose track of whether I had
> > done a stash apply or not, and the risk of inadvertently doing a drop
> > _without_ a corresponding apply was very real.
>
> "pop" doesn't always succeed. If you have conflicts in applying, then
> you end up with conflict markers, and the stash remains. You then fix up
> and commit as you see fit, but your stash is still there. So this bash
> prompt will nag you, which I think is what Thomas was complaining about
> (but perhaps the nagging would then convince you to keep a cleaner stash
> area by dropping the resolved stash).
Actually I was mostly concerned about dropping the stashes at all.
But I guess if you treat the stash as a short-term stack that holds a
change or two while you're working on something else, stash/pop fits
better.
I'd still prefer some configurability in the original patch, as I
think nagging the user into discarding data is a bad thing, even
though I now agree that if the 'pop' actually went through, it's not
really discarded. (Also, ISTR a discussion about automatic gc'ing of
the stash reflog where a few people said they expect to hit any
reasonably short time limit in some of their repos and thus risk
losing work; regardless of cleanup disclipline, they would also have
the prompt on all the time).
By the way, why doesn't gmane find these mails? I tried things like
http://search.gmane.org/?query=stash&group=gmane.comp.version-control.git&author=miles@gnu.org
but the entire thread seems to be missing from gmane.
Documentation/git-stash.txt | 30 ++++++++++++++++--------------
Documentation/user-manual.txt | 4 ++--
2 files changed, 18 insertions(+), 16 deletions(-)
diff --git a/Documentation/git-stash.txt b/Documentation/git-stash.txt
index 051f94d..1cc24cc 100644
--- a/Documentation/git-stash.txt
+++ b/Documentation/git-stash.txt
@@ -75,14 +75,22 @@ show [<stash>]::
it will accept any format known to 'git-diff' (e.g., `git stash show
-p stash@\{1}` to view the second most recent stash in patch form).
-apply [--index] [<stash>]::
+pop [<stash>]::
- Restore the changes recorded in the stash on top of the current
- working tree state. When no `<stash>` is given, applies the latest
- one. The working directory must match the index.
+ 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.
+
-This operation can fail with conflicts; you need to resolve them
-by hand in the working tree.
+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.
++
+When no `<stash>` is given, `stash@\{0}` is assumed. See also `apply`.
+
+apply [--index] [<stash>]::
+
+ Like `pop`, but do not remove the state from the stash list.
+
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
@@ -112,12 +120,6 @@ drop [<stash>]::
Remove a single stashed state from the stash list. When no `<stash>`
is given, it removes the latest one. i.e. `stash@\{0}`
-pop [<stash>]::
-
- Remove a single stashed state from the stash list and apply on top
- 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
@@ -163,7 +165,7 @@ $ git pull
file foobar not up to date, cannot merge.
$ git stash
$ git pull
-$ git stash apply
+$ git stash pop
----------------------------------------------------------------
Interrupted workflow::
@@ -192,7 +194,7 @@ You can use 'git-stash' to simplify the above, like this:
$ git stash
$ edit emergency fix
$ git commit -a -m "Fix in a hurry"
-$ git stash apply
+$ git stash pop
# ... continue hacking ...
----------------------------------------------------------------
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
index dbbeb7e..0b88a51 100644
--- a/Documentation/user-manual.txt
+++ b/Documentation/user-manual.txt
@@ -1520,10 +1520,10 @@ $ git commit -a -m "blorpl: typofix"
------------------------------------------------
After that, you can go back to what you were working on with
-`git stash apply`:
+`git stash pop`:
------------------------------------------------
-$ git stash apply
+$ git stash pop
------------------------------------------------
--
1.6.3.1.276.gb65cd
next prev parent reply other threads:[~2009-05-28 9:40 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-13 9:44 [PATCH] Showing stash state in bash prompt Daniel Trstenjak
2009-05-13 10:53 ` Sverre Rabbelier
2009-05-13 11:25 ` Daniel Trstenjak
2009-05-13 19:14 ` Junio C Hamano
2009-05-14 18:24 ` Thomas Rast
2009-05-15 0:57 ` Miles Bader
2009-05-15 2:11 ` Jeff King
2009-05-15 6:39 ` John Tapsell
2009-05-15 7:01 ` Brian Gernhardt
2009-05-15 7:12 ` Miles Bader
2009-05-28 9:40 ` Thomas Rast [this message]
2009-05-29 0:59 ` [RFC PATCH] Documentation: teach stash/pop workflow instead of stash/apply Sitaram Chamarty
2009-05-29 5:37 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ef178b42f4db36811e07f1bca4436ed79e550957.1243502202.git.trast@student.ethz.ch \
--to=trast@student.ethz.ch \
--cc=Daniel.Trstenjak@science-computing.de \
--cc=benji@silverinsanity.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=johnflux@gmail.com \
--cc=nanako3@lavabit.com \
--cc=peff@peff.net \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).