Git Merge Command

less than 1 minute read

Git commands when merge conflicts happened.

We can abort merging with the following command

1
$ git merge --abort

Resolving merge conflict with merge tool

1
$ git mergetool

Adding all changes after resolving merge conflicts with merge tool.

1
$ git add -A

With the following command, we can finish the merge conflict.

1
$ git merge --continue

Categories:

Updated: