Tagged Questions
10
votes
3answers
5k 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 ...
1
vote
1answer
68 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 ...