top of page
Beginner
Q8: How do you resolve merge conflicts in Git?
When a merge conflict occurs, it means that Git is unable to automatically merge the changes from different branches.
To resolve the conflict, you need to manually edit the conflicting files to choose the desired changes.
After resolving the conflicts, you can use the `git add` command to stage the changes, followed by `git commit` to complete the merge.
bottom of page