During a project, two developers accidentally work on the same file and create a conflict during merging. How would you resolve this conflict in Git?

  • Manually resolve conflicts using a text editor
  • git merge --abort
  • git rebase --continue
  • git reset --hard
To resolve conflicts in Git, you would manually resolve them using a text editor. After resolving conflicts, you continue the merge process. This ensures that conflicts are addressed, and changes are integrated properly.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *