This repository demonstrates basic Git operations including:
- Repository initialization
- Branch creation
- Merge conflicts
- Conflict resolution
- This line is added in main branch.
- This line is added in feature branch.
A merge conflict was created when the same section of README.md was modified in:
- main branch
- feature-branch
This line is added in main branch.
This line is added in feature branch.
- Opened the conflicted file in VS Code
- Reviewed both changes
- Combined both updates logically
- Removed conflict markers
- Staged the resolved file using
git add - Completed the merge using
git commit
The conflict was successfully resolved by merging changes from both branches.