Git stash pop with binary-merge conflict

I am trying to make "git stash pop" a binary. This leads to a merge conflict. I just want to pull out what is written and overwrite what is in the working directory. What is the easiest way to do this?

+4
source share
1 answer

To restore all files to their hidden version:

$ git checkout stash -- .
+8
source

All Articles