I have conflicts when trying to merge a pull-request on github where the repo is clonable from https://github.com/my_production_repo/my_app.git
.
So following their docs, I tried to run this on my local (productio_repo)
git checkout -b tmp master
git pull https://github.com/my_forked_repo/my_app.git master
Then I have some conflicts to fix. The issue is that some of the conflicts are related to byte-code files
. I want to force my local files to be overwritten by the files from the my_forked_repo
, I tried this
git merge -s recursive -X theirs https://github.com/my_forked_repo/my_app.git master
but I got https://github.com/my_forked_repo/my_app.git - not something we can merge