I have two files: A and B. If I have been working on A and a partner is working on B, I want to merge files A and B. B is already committed. Let\'s say my partner already made t
Let's say both you and your partner modified the same file, and is committed to each respective repository.
git pull # fetch/merge partners changes # merge fails, conflict git checkout origin FILE_TO_REPLACE # replace changes with partners ver git commit # finish merge