/2 min read
Git Setup: Your Name & Email
Resolve a Merge Conflict
1
Identify Conflicts
git status shows files with conflicts after a failed merge.
2
Open the Files
Look for <<<<<< / ====== / >>>>>> markers — your changes vs theirs.
3
Edit & Stage
Pick the right code, remove markers, git add the file.
4
Complete the Merge
git commit finalizes the merge with the resolved content.
Build Programming Foundations at Noble Desktop
Noble Desktop's Full-Stack Web Development Certificate teaches Git alongside the modern web stack — a must for any developer.
Git allows you to work more easily with other developers. Because you want to know who worked on a file and how to contact them, you need to tell Git your name and email.