this post was submitted on 09 Sep 2023
11 points (100.0% liked)
No Stupid Questions (Developer Edition)
934 readers
1 users here now
This is a place where you can ask any programming / topic related to the instance questions you want!
For a more general version of this concept check out [email protected]
Icon base by Lorc under CC BY 3.0 with modifications to add a gradient
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Merge conflicts can always be resolved, just not automatically. You should learn how to resolve them.
The red commit made changes to files that after the merge would produce dead code.
Part of doing a merge commit at all is ensuring the merge results in clean code. You would need to resolve this in your merge commit, even if that area of the code was not in a merge conflict. You learn this when learning to resolve merge conflicts.
Yep, most merge conflicts that happen on less than 10 lines can be fixed manually. It's an invaluable skill.