How can you identify the specific commits that introduced conflicting changes during a merge in Git?

  • git blame
  • git show
  • git diff
  • git log
When a merge conflict occurs, using git diff will help identify the conflicting changes introduced by specific commits. This command shows the differences between the working directory and the index or a tree, making it useful for inspecting changes.
Add your answer
Loading...

Leave a comment

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