git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Can not list stash (git version 2.30.0)
@ 2021-04-07 17:49 Eugen Konkov
  2021-04-07 19:48 ` Jeff King
  0 siblings, 1 reply; 2+ messages in thread
From: Eugen Konkov @ 2021-04-07 17:49 UTC (permalink / raw)
  To: Git Mailing List

Hello Git,

I am in progress of rebasing

~/e/Auth/Mojolicious/Plugin $ git rebase aa3376
Created autostash: 4018bc7
hint: Waiting for your editor to close the file...


while I am in editor I switched to different console to view created autostash:

~/e/Auth $ git stash list

and see nothing

but can view stash by its id:
~/e/Auth $ git show 4018bc7
commit 4018bc7bc870eb37aa35f40a0f612ca55a586045
Merge: a790392 674e39f
.....


Expected result: I should be able to see this autostash when `git stash list`



--
Best regards,
Eugen Konkov 


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

* Re: Can not list stash (git version 2.30.0)
  2021-04-07 17:49 Can not list stash (git version 2.30.0) Eugen Konkov
@ 2021-04-07 19:48 ` Jeff King
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2021-04-07 19:48 UTC (permalink / raw)
  To: Eugen Konkov; +Cc: Git Mailing List

On Wed, Apr 07, 2021 at 08:49:38PM +0300, Eugen Konkov wrote:

> I am in progress of rebasing
> 
> ~/e/Auth/Mojolicious/Plugin $ git rebase aa3376
> Created autostash: 4018bc7
> hint: Waiting for your editor to close the file...
> 
> 
> while I am in editor I switched to different console to view created autostash:
> 
> ~/e/Auth $ git stash list
> 
> and see nothing
> 
> but can view stash by its id:
> ~/e/Auth $ git show 4018bc7
> commit 4018bc7bc870eb37aa35f40a0f612ca55a586045
> Merge: a790392 674e39f
> .....

If you run with GIT_TRACE=1, you can see that the autostash feature uses
"git stash create" and not "git stash push". That creates the stash
commit but _doesn't_ push it onto the stash list.

So it's working as intended. The rationale comes from the very
first commit adding autostash, 587947750b (rebase: implement
--[no-]autostash and rebase.autostash, 2013-05-12), which says:

    The advantage of this approach is that we do not affect the normal
    stash's reflogs, making the autostash invisible to the end-user.  This
    means that you can use 'git stash' during a rebase as usual.

-Peff

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

end of thread, other threads:[~2021-04-07 19:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-07 17:49 Can not list stash (git version 2.30.0) Eugen Konkov
2021-04-07 19:48 ` Jeff King

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