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.
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>
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.