* [BUG?] git stash pop results in conflict
@ 2010-03-24 2:01 Tim Mazid
2010-03-24 10:34 ` Michael J Gruber
0 siblings, 1 reply; 2+ messages in thread
From: Tim Mazid @ 2010-03-24 2:01 UTC (permalink / raw)
To: Git Mailing List
Hi,
I'm not sure if this is a bug or if it should be thus.
Basically, a 'git stash --keep-index' followed immediately by a 'git stash pop' (no changes made) will result in a conflict.
Steps to reproduce:
Put
"AAA
BBB
CCC"
into file 'test'
$ git add test
$ git commit -m "A"
Append lines
"DDD
EEE
FFF
GGG"
into file 'test'
$ git add -p
Press 'e' and remove the "FFF" and "GGG" files from the patch, to stage only the "DDD" and "EEE" files.
$ git stash --keep-index
$ git stash pop
CONFLICT
I hope that's clear enough.
Cheers,
Tim.
_________________________________________________________________
Link all your email accounts and social updates with Hotmail. Find out now.
http://windowslive.ninemsn.com.au/oneinbox?ocid=T162MSN05A0710G
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [BUG?] git stash pop results in conflict
2010-03-24 2:01 [BUG?] git stash pop results in conflict Tim Mazid
@ 2010-03-24 10:34 ` Michael J Gruber
0 siblings, 0 replies; 2+ messages in thread
From: Michael J Gruber @ 2010-03-24 10:34 UTC (permalink / raw)
To: Tim Mazid; +Cc: Git Mailing List
Tim Mazid venit, vidit, dixit 24.03.2010 03:01:
>
> Hi,
>
> I'm not sure if this is a bug or if it should be thus.
>
> Basically, a 'git stash --keep-index' followed immediately by a 'git stash pop' (no changes made) will result in a conflict.
>
> Steps to reproduce:
>
>
> Put
>
> "AAA
> BBB
> CCC"
>
> into file 'test'
>
> $ git add test
> $ git commit -m "A"
>
> Append lines
>
> "DDD
> EEE
> FFF
> GGG"
>
> into file 'test'
>
> $ git add -p
>
> Press 'e' and remove the "FFF" and "GGG" files from the patch, to stage only the "DDD" and "EEE" files.
>
> $ git stash --keep-index
Right here, git stash show -p shows that the recorded stash is a merge diff:
diff --cc test
index 7b0e998,988cecb..83b9202
--- a/test
+++ b/test
@@@ -1,3 -1,5 +1,7 @@@
AAA
BBB
CCC
+ DDD
+ EEE
++FFF
++GGG
The index still has the following (git diff --staged):
diff --git c/test i/test
index 7b0e998..988cecb 100644
--- c/test
+++ i/test
@@ -1,3 +1,5 @@
AAA
BBB
CCC
+DDD
+EEE
> $ git stash pop
>
> CONFLICT
>
>
> I hope that's clear enough.
git diff shows the conflict:
diff --cc test
index 988cecb,83b9202..0000000
--- i/test
+++ w/test
@@@ -3,3 -3,5 +3,8 @@@ BB
CCC
DDD
EEE
++<<<<<<< Updated upstream
++=======
+ FFF
+ GGG
++>>>>>>> Stashed changes
According to the example in the man page, I would have thought that
committing between save and pop would help, but it produces the same
problem. pop --index doesn't help either. Do you happen to know whether
this used to work?
Michael
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-03-24 10:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-24 2:01 [BUG?] git stash pop results in conflict Tim Mazid
2010-03-24 10:34 ` Michael J Gruber
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).