git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git-stash
@ 2007-06-07 22:28 Johannes Schindelin
  2007-06-07 22:52 ` git-stash Lars Hjemli
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Johannes Schindelin @ 2007-06-07 22:28 UTC (permalink / raw)
  To: git

Hi,

I just was in the need for git-stash (for the 1e6th time this year), but 
instead of writing a script, I though I'd try the "!" convention for 
aliases. Works quite well for me:

git config alias.stash '!git diff-files --name-only -z | git update-index 
-z --stdin && tree=$(git-write-tree) && commit=$(echo stash $(date) | 
git-commit-tree $tree) && git-update-ref refs/heads/stash $commit && 
git-reset --hard'

(This is one long line.)

With this, I can now say "git stash" with a dirty working directory, and 
it will have the same effect as "git reset --hard", i.e. reset to the 
clean state in HEAD.

Except that all my changes are stashed away in the branch "stash". It is 
not really a branch, as I expect it to jump from loose end to loose end, 
like this:

A - B - C - D - E - F - G - H - ...  (master branch)
  \               \       \
    A'  ..          E'  ..  G'       (stash branch)

The ".." denote reflog connections: "git log stash" will show G' and as 
its parent G with its history, while "git reflog stash" will show G', and 
then E', and then A'.

Maybe it is not only useful for me...

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-06-08  6:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-07 22:28 git-stash Johannes Schindelin
2007-06-07 22:52 ` git-stash Lars Hjemli
2007-06-07 22:55   ` git-stash Johannes Schindelin
2007-06-07 23:38 ` git-stash Lars Hjemli
2007-06-08  0:26 ` git-stash Bill Lear
2007-06-08  6:52 ` git-stash Matthias Lederhofer

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).