I have 2 git branches branch1 and branch2 and I want to merge file.py in branch2 into file.py in branch1 and only that file.
In essence I just want to work on the fi
What I've done is a bit manual, but I:
revert
HEAD~1
Ugly? Yes. Easy to remember? Also yes.