in Technology by

How to resolve a conflict in Git?

Please log in or register to answer this question.

1 Answer

0 votes
by

The following steps will resolve conflict in Git-

  1. Identify the files that have caused the conflict.

  2. Make the necessary changes in the files so that conflict does not arise again.

  3. Add these files by the command git add.

  4. Finally to commit the changed file using the command git commit

Related questions

...