Complete the Merge: In case your merge has not yet been completed, check for any files that still need to be dealt with. Use git status to see the conflicting files.Resolve Conflicts: Open every conflicted file, correct the problems, and then save the file. Stage Changes: After the conflicts have been resolved, stage the changes with:git add <file>Commit the Merge: Commit the merge with a message:git commit -m "Merge branch 'f' into master"Pull Latest Changes: After this you will be able to pull the latest changes from the remote server safely:git pull origin masterAddress Divergence: In cases where you have got a situation where the two branches have become different you will have two choices, either you merge or rebase, choosing the one that suits your workflow.