0 votes
in Git by
What is a conflict in git?

2 Answers

0 votes
by
edited by

Merge conflicts happen when you merge branches that have contending commits, and Git needs your assistance to choose which changes to fuse in the last merge.Usually, the progressions are on various lines, or even in various documents, which makes the merge basic for PCs to get it.

0 votes
by

Git can handle on its own most merges by using its automatic merging features. There arises a conflict when two separate branches have made edits to the same line in a file, or when a file has been deleted in one branch but edited in the other. Conflicts are most likely to happen when working in a team environment.

Related questions

0 votes
asked Oct 15, 2019 in Git by rajeshsharma
0 votes
asked Sep 17, 2021 in Interstellar Git by SakshiSharma
...