git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] (resend) stash bug: stash can lose data in a file removed from the index
@ 2010-04-15  0:24 Charles Bailey
  2010-04-15  0:24 ` [PATCH 2/2] (resend) stash: Don't overwrite files that have gone " Charles Bailey
  0 siblings, 1 reply; 4+ messages in thread
From: Charles Bailey @ 2010-04-15  0:24 UTC (permalink / raw)
  To: Junio C Hamano, git; +Cc: Charles Bailey

If a file is removed from the index and then modified in the working
tree then stash will discard the working tree file with no way to
recover the changes.

This can might be done in one of a number of ways.

git rm file
vi file              # edit a new version
git stash

or with git mv

git mv file newfile
vi file              # make a new file with the old name
git stash

Signed-off-by: Charles Bailey <charles@hashpling.org>
---
 t/t3903-stash.sh |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index 476e5ec..c85bf44 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -228,4 +228,13 @@ test_expect_success 'stash --invalid-option' '
 	test bar,bar2 = $(cat file),$(cat file2)
 '
 
+test_expect_failure 'stash git rm' '
+    git reset --hard &&
+	git rm file &&
+	echo bar7 > file &&
+	git stash &&
+	git stash apply &&
+	test bar7 = $(cat file)
+'
+
 test_done
-- 
1.7.1.rc1.241.g4e72f

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

end of thread, other threads:[~2010-04-15  7:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-15  0:24 [PATCH 1/2] (resend) stash bug: stash can lose data in a file removed from the index Charles Bailey
2010-04-15  0:24 ` [PATCH 2/2] (resend) stash: Don't overwrite files that have gone " Charles Bailey
2010-04-15  7:33   ` Thomas Rast
2010-04-15  7:38     ` 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).