I changed a file in my testing repository and git push
the change.
Now I want to git pull
to my developement repo. However the developement repo also has a change in the same file...so I want to merge the 2 changes together.
Git merge doesn't work - not something we can merge
I ended up doing git checkout <file>
to delete my changes and git pull
then manually editing the changes back. But I would like to know if there is a better way to do this.