I followed GitHub's instructions for removing sensitive files from a git repository because I wanted to remove some binaries that should not have been checked in.
My first invocation of the git filter-branch command failed with:
Cannot rewrite branch(es) with a dirty working directory.
because I had local changes. So, I stashed away these changes with git stash, and re-ran the filter-branch command.
I then ran these commands per the GitHub instructions:
rm -rf .git/refs/original
git reflog expire --expire=now --all
git gc --prune=now
git gc --aggressive --prune=now
The removal of the binaries seems to have worked flawlessly. However, when I now type git stash list, the stash entry that I added on the old master is not displayed.
All that I have is the output from git stash before I executed the filter-branch command the second time:
Saved working directory and index state WIP on master: a19db18 LOG_MESSAGE
HEAD is now at a19db18 LOG_MESSAGE
Also, a19db18332b19ea41be888eccfc07e6680d8d6dd was one of the commits that was rewritten.
Is there a way to retrieve the stashed changes?
refs/originals/heads/master, can you see the stash again? – Jefromi Jan 30 '11 at 19:00git reflog expire --expire=now --all, which, now that I think about it, might be the reason why the stash entry is no longer available. – Daniel Trebbien Jan 30 '11 at 21:54