Branches are one of Git's most powerful features, allowing developers to work on multiple features or fixes simultaneously without interfering with each other. This guide explains what branches are, how to use them effectively, and how they fit into your overall Git workflow.
🎥 Video: Git Branches Tutorial (33 mins) - How to work with branches effectively
A branch in Git is simply a lightweight movable pointer to a commit. The default branch in Git is called main
(or master
in older repositories). Each time you make a commit, the branch pointer automatically moves forward to point to your latest commit.
Branches are essential to modern software development for several reasons:
💡 Tip: Even if you're working alone, branches help you organize your work and keep your main branch stable.
Git provides several commands for working with branches.
# Create a new branch
$ git branch feature/login
This creates a new branch called feature/login
but doesn't switch to it.
# Switch to an existing branch
$ git checkout feature/login
Switched to branch 'feature/login'
# Create and switch to a new branch
$ git checkout -b feature/payment
Switched to a new branch 'feature/payment'
# List all branches (* indicates current branch)
$ git branch
main
feature/login
* feature/payment
⚠️ Note: When you create a new branch, it starts at your current position (commit). Any new commits you make will be part of this branch until you switch to another one.
There are several popular branching strategies used by development teams:
In this simple approach, each new feature gets its own branch. Once the feature is complete, it's merged back into the main branch.
Gitflow is a more structured branching model with specific branch types:
main
: Production-ready codedevelop
: Integration branch for featuresfeature/*
: New featuresrelease/*
: Preparing for a releasehotfix/*
: Quick fixes to production💡 Tip: Choose a branching strategy that fits your team size and project needs. Simple projects may only need feature branches, while larger projects benefit from more structure.
Merging is the process of combining changes from one branch into another. When you've completed work in a feature branch, you'll want to merge it back to your main branch.
# Switch to the receiving branch (usually main)
$ git checkout main
# Merge the feature branch into the current branch
$ git merge feature/login
Updating a1b2c3d..e5f6g7h
Fast-forward
login.html | 65 +++++++++++++++++++++++
login.css | 42 ++++++++++++++++
login.js | 103 +++++++++++++++++++++++++++++++++++++
3 files changed, 210 insertions(+)
Git performs different types of merges depending on the situation:
Merge conflicts occur when Git can't automatically merge changes from different branches. This typically happens when:
When a merge conflict occurs, Git will notify you and mark the conflicts in your files.
$ git merge feature/navbar
Auto-merging index.html
CONFLICT (content): Merge conflict in index.html
Automatic merge failed; fix conflicts and then commit the result.
When you open a file with conflicts, you'll see sections marked like this:
<<<<<<< HEAD
<h1>Welcome to Our Website</h1>
=======
<h1>Welcome to Our Awesome Site</h1>
>>>>>>> feature/navbar
Depending on your editor, the conflict might be color-coded, something like this:
To resolve the conflict:
<<<<<<<
, =======
, >>>>>>>
)git add
git commit
# After resolving conflicts manually in your editor
$ git add index.html
$ git commit -m "Merge feature/navbar, resolve welcome message conflict"
⚠️ Note: For complex merge conflicts, graphical tools can be helpful. Use
git mergetool
to launch a configured visual merge tool.
For more detailed information on handling merge conflicts, see our dedicated guide: Git Merge Conflicts
While branches and forks might seem similar, they serve different purposes and work differently:
To create a fork, click the Fork button on the top right of a repository's page on GitHub. This creates a full copy of the repository in your GitHub account.
# After forking on GitHub, clone your fork locally
$ git clone https://github.com/your-username/forked-repository.git
# Add the original repository as a remote called "upstream"
$ git remote add upstream https://github.com/original-owner/original-repository.git
# Verify remotes
$ git remote -v
origin https://github.com/your-username/forked-repository.git (fetch)
origin https://github.com/your-username/forked-repository.git (push)
upstream https://github.com/original-owner/original-repository.git (fetch)
upstream https://github.com/original-owner/original-repository.git (push)
💡 definitions:
remote repository: The repository that you forked from upstream: The original repository that you forked from (not technically "yours") origin: Your forked repository
feature/login
, bugfix/header
)📝 Note: Your organization's best practices may vary from these, but they should be consistent and meaningful.
# Delete a branch after merging
$ git branch -d feature/login
Deleted branch feature/login (was a1b2c3d).
# Force delete an unmerged branch (use with caution)
$ git branch -D abandoned-feature
Deleted branch abandoned-feature (was e5f6g7h).