I have an XML file that we consider binary in git. This file is externally modified and committed.
I don't care about who edited it and what's new in the file. I just want to have the latest file version at every pull. At this time, at every git pull
I have a merge conflict.
I just want that this file is overwritten on every git pull
, without manually doing stuff like git fetch/checkout/reset
every time I have to sync my repo.
Careful: I want to overwrite just that file, not every file.
Thanks