i am trying to push my code but its showing conflict in xlsx file. when i trying to resolve it or rebase it, it doesn't work. so can we resolve the conflict as well for excel files.
Community moderators have prevented the ability to post new answers.
Hi @komal.gupta
XLSX files are binaries which usually cannot be merged using 3-way merge tools.
To solve this conflict situation use the git checkout command with the options: --ours or --theirs
For example:
1) If you want to keep your version of the file you should:
git checkout --ours <path to your file>
2) If you want to keep the version from the branch you are cloning you should:
git checkout --theirs <path to your file>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.