-
Short answer. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
A Git merge conflict is an event that occurs when Git is unable to resolve the differences in code between the two commits automatically. Git is capable of automatically merging the changes only if the commits are on different lines or branches. |
Beta Was this translation helpful? Give feedback.
-
Conflicts often arise when two people change the same lines in a file, or if one developer deleted a file while another was modifying it. Git makes this look easy to resolve by showing what the conflicts are. |
Beta Was this translation helpful? Give feedback.
A Git merge conflict is an event that occurs when Git is unable to resolve the differences in code between the two commits automatically.
Git is capable of automatically merging the changes only if the commits are on different lines or branches.