DEV Community

Cover image for Advanced Git Commands and Workflows: A Comprehensive Guide for Developers
Matías Hernández Arellano for Documatic

Posted on

Advanced Git Commands and Workflows: A Comprehensive Guide for Developers

Introduction

In software development, Git is more than just a tool—it's an essential lifeline for developers. It's the cornerstone of version control, allowing multiple people to work on a project without stepping on each other's toes. While the basic commands lay the groundwork, the advanced commands and workflows constitute the building blocks that add robustness to your version control capabilities. This article is your architectural blueprint to these building blocks, designed specifically for mid-senior engineers and engineering managers who are ready to elevate their Git proficiency.

Deep Dive into Advanced Git Commands

In this section, we will delve into some of the advanced Git commands that can make your life as a developer more manageable and more efficient. We'll explore commands like interactive rebase, cherry-pick, bisect, reflog, and blame. Each command serves a unique purpose and can help you in different scenarios. Let's look at these commands, how they work, and where they can be helpful.

Interactive Rebase

Picture Git as a time machine. The interactive rebase command is the control panel of this machine, enabling you to travel back in time, alter the events (commits), and proceed along the new timeline. It's a powerful tool that gives you complete control over your commit history. For instance, if you're working on a feature with a messy commit history, you can use interactive rebase to clean it up, making it more understandable for your team.

Here's how you can do it:

# Start an interactive rebase
git rebase -i HEAD~3

# Text editor opens up for you to modify the commits
# You can change the order of the commits, squash them together, or even delete them
# Save and close the editor to start the rebase
Enter fullscreen mode Exit fullscreen mode

The interactive rebase command opens up a text editor where you can see a list of the commits that you're about to rewrite. The commits are displayed in reverse order, with the oldest commit at the top. You can change the order of the commits, squash them together, or even delete them.

Cherry-pick

Visualize picking apples from a tree, but you desire only the ripest ones. The cherry-pick command is your tool for this task. It lets you choose a commit from a branch (the tree) and apply it to another. This is handy when you've fixed a bug in a development branch and must use the fix in the production branch without integrating any other changes.

Here's an example of how to use cherry-pick:

# Cherry-pick a commit
git cherry-pick <commit-hash>
Enter fullscreen mode Exit fullscreen mode

The cherry-pick command applies the changes introduced by the commit with the provided hash onto the current branch. This can be particularly useful when applying a bug fix from the development branch to the production branch without merging the entire branch.

Bisect

Hunting for a bug in a commit is akin to finding a needle in a haystack. The bisect command is your high-tech metal detector. By marking a good commit (no needle) and a bad commit (with a needle), Git bisect will guide you to the offending commit most efficiently.

Here's how you can use bisect to find a bug:

# Start a bisect session
git bisect start

# Mark the current state as bad
git bisect bad

# Mark the last known good state
git bisect good <commit-hash>

# Git guides you to the offending commit
Enter fullscreen mode Exit fullscreen mode

The bisect command uses a binary search algorithm to find the commit that introduced a bug. It's a powerful tool that can save you a lot of time when trying to track down a bug.

Reflog

If Git is a time machine, then reflog is the black box recorder. It keeps track of all the time travel you've done. Did you accidentally delete a branch? No worries, Reflog has got you covered.

Here's how you can use reflog:

# See the reflog
git reflog

# Recover a lost commit
git checkout <commit-hash>
Enter fullscreen mode Exit fullscreen mode

The reflog command shows you a list of all the actions that you've taken in the Git repository. It's a powerful tool that can save you from disastrous mistakes.

Blame

The blame command is akin to a detective that helps you trace back the origins of every line in a file. It's a potent tool when you're trying to comprehend why a particular line of code was added, who did it, and when.

Here's how you can use blame:

# Use blame on a file
git blame <file>
Enter fullscreen mode Exit fullscreen mode

The blame command shows an annotation of the file, with information about which commit last modified each line. This can be extremely useful when trying to understand a file's history.

Exploring Advanced Git Workflows

In this section, we will explore some advanced Git workflows that can help you manage your projects more efficiently. We'll look at the Gitflow Workflow, the Forking Workflow, and the Feature Branch Workflow. Each of these workflows has its strengths and can be useful in different scenarios.

Gitflow Workflow

Picture managing a bustling city. The Gitflow Workflow is your city planning guide. The main and develop branches are akin to the city's main arteries. Feature, release, and hotfix branches are the smaller streets that feed into these main arteries. This workflow ensures that traffic (changes) flows smoothly, no matter how busy it gets.

Here's an example of how you can use Gitflow:

# Start a new feature
git flow feature start <feature>

# Finish the feature
git flow feature finish <feature>
Enter fullscreen mode Exit fullscreen mode

The Gitflow Workflow is a robust workflow that's well-suited for managing large projects. It uses two parallel long-lived branches to record the history of the project: the Main branch for production-ready code and the developer branch for integration of features.

Forking Workflow

This is like a potluck dinner. Everyone brings (forks) their dish (repository), makes changes (adds their secret sauce), and then offers it to the host (original repository) for inclusion.

Here's how you can contribute to a project using the Forking Workflow:

# Clone the forked repository
git clone <repository>

# Make changes and commit them
git commit -am "made some changes"

# Push changes to your fork
git push origin main

# Open a pull request on GitHub
Enter fullscreen mode Exit fullscreen mode

The Forking Workflow is commonly used in open-source projects. It allows anyone to contribute to the project without access to the central repository. The changes are proposed using a pull request, which can be reviewed and discussed before being merged into the project.

Feature Branch Workflow

Think of your codebase as a museum exhibit. The main branch is the exhibit open to the public. Feature branches are the artists' studios where new exhibits (features) are prepared.

Here's how you can add a new feature using the Feature Branch Workflow:

# Start a new feature
git checkout -b <feature>

# Make changes and commit them
git commit -am "add new feature"

# Switch to the main branch
git checkout main

# Merge the feature into the master
git merge <feature>
Enter fullscreen mode Exit fullscreen mode

The Feature Branch Workflow is a simple workflow that's great for solo developers and small teams. It uses small, focused branches to develop new features or fix bugs. This keeps the main branch clean and your code base stable.

Conclusion

Mastering Git's advanced commands and workflows is akin to unlocking a new level in a game. It opens up new possibilities and new ways to control and manage your code. Whether you're navigating the intricate history of a long-lived project or coordinating a major release, these tools offer the control and flexibility needed to handle complex scenarios. So, dive in, explore, and level up your Git game.

Here's how you can add a new feature using the Feature Branch Workflow:

# Start a new feature
git checkout -b <feature>

# Make changes and commit them
git commit -am "add new feature"

# Switch to the main branch
git checkout main

# Merge the feature into the master
git merge <feature>
Enter fullscreen mode Exit fullscreen mode

The Feature Branch Workflow is a simple workflow that's great for solo developers and small teams. It uses small, focused branches to develop new features or fix bugs. This keeps the main branch clean and your code base stable.

Conclusion

Mastering Git's advanced commands and workflows is akin to unlocking a new level in a game. It opens up new possibilities and new ways to control and manage your code. Whether you're navigating the intricate history of a long-lived project or coordinating a major release, these tools offer the control and flexibility needed to handle complex scenarios. So, dive in, explore, and level up your Git game.

Top comments (4)

Collapse
 
erikms61 profile image
erikms61 • Edited

nice write-up!
duplicated section relating to feature branch in your conclusions

Collapse
 
sas2k profile image
Sasen Perera

These commands are really useful for your normal dev. Nice job on the article.

Collapse
 
suni profile image
Suni

These commands are indeed useful, but using the vscode extension: git graph is more convenient in everyday use.

Collapse
 
amin-ir profile image
Amin

i used to think that i might not necessarily know how to use every command e.g. cherry-pick; but now i see there are the ones i've not even heard of (like bisect) :)