I'm looking for a way to delete a single change from a stash compiled of several changes, anyone knows of a way to do it?
The best way for to describe it (due to the fact that git commit
and git stash
are so similar) is that I wish I knew a way to git commit --amend
the stash.
It all started when I git stash
a few changes before pulling from a shared repository.
while I was trying to git pop
the code from the stash, I had a conflict (I couldn't resolve) with a file I didn't care for duo to the fact that I had a script to generate it automatically, and was more interested in the other files located in my stash.
While I was looking for a solution I've found this Q : How would I extract a single file (or changes to a file) from a git stash? - it seemed promising, and was also given to someone else asking a similar question to mine, but it didn't help...