Hello (and please CC me on replies). I was unpleasantly surprised to discover yesterday that doing `git stash` on a repository where I had previously run `git update-index --assume-unchanged FOO` completely lost all changes I had in file FOO. I understand the behavior is logical from the way git-stash is implemented, but it strikes as very undesirable behavior to me. Does somebody think something could be done to change it? In my opinion, both including in the stash changes in FOO, or just leaving them in the working tree, would be better alternatives. Thoughts? -8<- % git init % echo file1 contents >file1; echo file2 contents >file2 % git add file1 file2; git commit -m Initial. % echo changes for file2 >>file2 % echo some other changes to file 1 >>file1 % git update-index --assume-unchanged file1 % git stash % cat file1 file1 contents % git stash show -p --- a/file2 +++ b/file2 @@ -1 +1,2 @@ file2 contents +changes for file2 -8<- -- - Are you sure we're good? - Always. -- Rory and Lorelai -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html