2025-03-15 Web Development, Productivity
Working with Branches & Merging in Git
By O. Wolfson
Version control is essential for modern software development, and Git's branching and merging capabilities are at the heart of effective collaboration. Whether working solo or in a team, understanding how to create, switch, and merge branches properly will streamline development and prevent conflicts.
Why Branching is Critical for Teamwork
Branches allow developers to work on features, bug fixes, and experiments independently without interfering with the main codebase. This ensures:
- Parallel Development: Multiple developers can work on different features simultaneously.
- Code Isolation: Changes in one branch do not affect others until merged.
- Safe Experimentation: Developers can test new ideas without modifying stable code.
- Easier Collaboration: Team members can review, modify, and test each other’s work before merging.
Creating and Switching Branches
To work with branches effectively, you need to create and switch between them as needed. Here are the essential commands:
Creating a Branch
Switching to a Branch
Creating and Switching in One Step
Merging Branches & Dealing with Merge Conflicts
Once development on a feature branch is complete, it needs to be merged back into the main branch (often main
or develop
). This can be done with:
Merge Conflicts
Sometimes, Git cannot automatically merge changes, resulting in a merge conflict. Git marks the conflicting sections in files like this:
To resolve:
-
Manually edit the file to keep the correct version.
-
Remove the conflict markers (
<<<<<<<
,=======
,>>>>>>>
). -
Stage and commit the resolved file:
When to Use Fast-Forward vs. Non-Fast-Forward Merging
Fast-Forward Merge
A fast-forward merge occurs when the target branch has not diverged from the feature branch:
This moves the branch pointer forward, avoiding extra merge commits.
Non-Fast-Forward Merge
A non-fast-forward (or true) merge creates a new commit even if a direct linear merge is possible:
This is useful for preserving a clear history of feature work.
🔹 Hands-on Exercise: Create Feature Branches, Merge Them, and Resolve Conflicts
-
Initialize a repository (if not already done):
-
Create and switch to a feature branch:
-
Create and switch to another feature branch:
-
Merge
feature-1
intomain
: -
Try merging
feature-2
and resolve conflicts:If there is a conflict, manually edit
file.txt
, remove conflict markers, and commit the resolution. -
Verify the merged history:
By practicing these commands and workflows, you’ll gain confidence in managing branches and resolving merge conflicts efficiently. Happy coding!