Tagged Questions
9
votes
3answers
4k views
How to make git merge handle uncommitted changes to my working tree?
A co-worker and I are both working on the master branch at the moment. I have some code in my working tree that I don't want to commit (debugging statements and the like). Now if he commits changes ...
0
votes
1answer
50 views
`git stash` during a merge conflict
We've done something bad.
We ran git stash save during a merge conflict, and now we can't restore our work.
Things we've tried:
git pull -Xours origin master
git stash apply --index
And:
git ...