git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* After stash pop, refs/stash become 40 zeroes
@ 2014-01-15  5:56 乙酸鋰
  2014-01-15  6:00 ` 乙酸鋰
  2014-01-15  8:51 ` Jeff King
  0 siblings, 2 replies; 3+ messages in thread
From: 乙酸鋰 @ 2014-01-15  5:56 UTC (permalink / raw)
  To: git

Hi,

what are the possible causes of this?
After stash pop, refs/stash becomes 40 zeroes.
This is the only stash, so refs/stash should be deleted after pop.
However, it becomes 40 zeroes.

git 1.8.x

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

* Re: After stash pop, refs/stash become 40 zeroes
  2014-01-15  5:56 After stash pop, refs/stash become 40 zeroes 乙酸鋰
@ 2014-01-15  6:00 ` 乙酸鋰
  2014-01-15  8:51 ` Jeff King
  1 sibling, 0 replies; 3+ messages in thread
From: 乙酸鋰 @ 2014-01-15  6:00 UTC (permalink / raw)
  To: git

Also, logs/refs/stash becomes empty (0 bytes of file size) after pop.

2014/1/15 乙酸鋰 <ch3cooli@gmail.com>:
> Hi,
>
> what are the possible causes of this?
> After stash pop, refs/stash becomes 40 zeroes.
> This is the only stash, so refs/stash should be deleted after pop.
> However, it becomes 40 zeroes.
>
> git 1.8.x

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

* Re: After stash pop, refs/stash become 40 zeroes
  2014-01-15  5:56 After stash pop, refs/stash become 40 zeroes 乙酸鋰
  2014-01-15  6:00 ` 乙酸鋰
@ 2014-01-15  8:51 ` Jeff King
  1 sibling, 0 replies; 3+ messages in thread
From: Jeff King @ 2014-01-15  8:51 UTC (permalink / raw)
  To: 乙酸鋰; +Cc: git

On Wed, Jan 15, 2014 at 01:56:52PM +0800, 乙酸鋰 wrote:

> what are the possible causes of this?
> After stash pop, refs/stash becomes 40 zeroes.
> This is the only stash, so refs/stash should be deleted after pop.
> However, it becomes 40 zeroes.
> 
> git 1.8.x

I can't reproduce the problem here. Running this:

  git init -q repo && cd repo
  echo content >file && git add file && git commit -qm file
  echo more >>file

  echo "==> stashed"
  git stash -q
  ls -l .git/refs/stash .git/logs/refs/stash
  git rev-parse --verify refs/stash

  echo "==> popped"
  git stash pop -q
  ls -l .git/refs/stash .git/logs/refs/stash
  git rev-parse --verify refs/stash

yields:

  ==> stashed
  -rw-r--r-- 1 peff peff 153 Jan 15 03:49 .git/logs/refs/stash
  -rw-r--r-- 1 peff peff  41 Jan 15 03:49 .git/refs/stash
  7fb40812ac4aaf7fa31e584863fc52c4b4a67aa0
  ==> popped
  ls: cannot access .git/refs/stash: No such file or directory
  ls: cannot access .git/logs/refs/stash: No such file or directory
  fatal: Needed a single revision

Does running it reproduce the problem for you? If it does, can you be
more specific about your git version?  If it does not, can you show what
you are doing differently to reproduce?

-Peff

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

end of thread, other threads:[~2014-01-15  8:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-15  5:56 After stash pop, refs/stash become 40 zeroes 乙酸鋰
2014-01-15  6:00 ` 乙酸鋰
2014-01-15  8:51 ` 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).