git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* git stash usage
@ 2007-09-06 14:20 Nikodemus Siivola
  0 siblings, 0 replies; only message in thread
From: Nikodemus Siivola @ 2007-09-06 14:20 UTC (permalink / raw)
  To: git

I'm not sure if I understand git-stash correctly.

 ...work...
 git stash
 ...quick fix & commit...
 git stash apply
 ...more work...

is my understanding of the normal workflow. If this is
correct, why does "apply" leave the stash in the list
of stashes?

  mkdir git-stash-test
  cd git-stash-test
  git init
  echo foo > save-apply-test.txt
  git add save-apply-test.txt
  git commit -m "foo"
  echo bar > save-apply-test.txt
  git stash
  echo quux > save-apply-test.txt
  git commit -a -m "quux"
  git stash apply
  git commit -a -m "bar"
  # I would expect the list to be empty now, but it isn't.
  git stash list

Is this intentional?

It's a bit inconvenient, especially considering that
"clear" removes all the stashes.

I can easily accumulate several stashes, some of which
are applied and some of which are not -- but have no
way to easily know which are which.

Cheers,

 -- Nikodemus

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-09-06 14:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-09-06 14:20 git stash usage Nikodemus Siivola

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).