1. Home
  2. Comprehensive Guide to Essential Git Commands for Developers

Comprehensive Guide to Essential Git Commands for Developers

Reading TIme:6 min
Published on:December 26, 2024
gitversion controldeveloper tools

Essential Git commands guide header image

Introduction

Git is a powerful distributed version control system widely used by developers to manage source code efficiently, track changes, and collaborate on projects. Mastering Git can significantly enhance your productivity and workflow. This guide introduces you to the most essential Git commands, explaining their purpose and how to use them effectively through real-world scenarios.

Whether you're new to Git or need a refresher, this page will provide clear, practical insights to help you navigate Git with confidence.


Everyday Git Commands Explained with Scenarios

1. Setting Up Your Project

These commands help you get started with a Git repository.

git init

Scenario: You are starting a new project, such as building a portfolio website, and want to track your progress with Git.

The git init command initializes a new Git repository in the current directory, creating all necessary files for version control. This ensures you can track changes as you build features.

terminal
git init
Please run this command either in terminal/command prompt.

git clone

Scenario: Your team has already set up a project on GitHub, and you need to work on it locally.

The git clone command copies an existing repository from a remote server to your local machine. This allows you to work on a team project by pulling the latest codebase.

terminal
git clone <repository_url>
Please run this command either in terminal/command prompt.

git clone --depth 1

Scenario: You need a lightweight copy of a repository for quick fixes or reviewing specific files.

This shallow cloning command fetches only the latest snapshot, saving time and disk space:

terminal
git clone --depth 1 <repository_url>
Please run this command either in terminal/command prompt.

2. Tracking and Managing Changes

These commands are essential for managing changes in your project.

git status

Scenario: You’ve modified a few files in your project, but you’re not sure which ones are staged for commit.

The git status command displays the state of your working directory and staging area, helping you identify changes that need attention.

terminal
git status
Please run this command either in terminal/command prompt.

git add

Scenario: You’ve completed edits to a new feature and want to include them in your next commit.

The git add command stages your changes, preparing them for the next commit. For example, after updating the index.html file, you can stage it using this command:

terminal
git add index.html
Please run this command either in terminal/command prompt.

git commit

Scenario: After staging changes, you’re ready to save a snapshot of your project with a clear explanation.

The git commit command records changes in the repository. Add a meaningful message to describe what you’ve done:

terminal
git commit -m "Add hero section to the homepage"
Please run this command either in terminal/command prompt.

git commit --amend

Scenario: You realize there’s a typo in your last commit message or you forgot to include a file.

This command lets you modify the most recent commit, whether it’s the message or the staged changes:

terminal
git commit --amend
Please run this command either in terminal/command prompt.

3. Collaborating with Others

Use these commands to share and integrate changes when working with a team.

git push

Scenario: You’ve added a new feature branch locally and want to share it with your team.

The git push command uploads your changes to the remote repository. For example, if you created a branch called feature-xyz:

terminal
git push origin feature-xyz
Please run this command either in terminal/command prompt.

git pull

Scenario: A teammate has updated the main branch, and you need to sync those updates with your local branch.

The git pull command fetches updates from a remote repository and merges them into your local branch:

terminal
git pull origin main
Please run this command either in terminal/command prompt.

git pull --rebase

Scenario: Your branch is behind the remote main branch, and you want to reapply your changes on top of the latest updates.

This command fetches changes and replays your commits to keep a cleaner project history:

terminal
git pull --rebase origin main
Please run this command either in terminal/command prompt.

git push --force-with-lease

Scenario: You’ve rewritten commit history and need to push your changes safely without overwriting someone else’s work.

This command ensures you force-push only if the remote branch hasn’t been updated by someone else:

terminal
git push --force-with-lease origin feature-xyz
Please run this command either in terminal/command prompt.

git fork

Scenario: You want to contribute to an open-source project but need your own copy for making changes.

The git fork feature (used on platforms like GitHub) creates a personal copy of a repository under your account.

After forking, clone your fork to your local machine:

terminal
git clone <forked_repository_url>
Please run this command either in terminal/command prompt.

4. Working with Branches

Branches allow you to work on separate features or bug fixes without affecting the main codebase.

git branch

Scenario: You want to start a new feature and isolate its work from the main branch.

The git branch command lets you list, create, or delete branches. For example, to start a new feature branch:

terminal
git branch feature-new-design
Please run this command either in terminal/command prompt.

git checkout

Scenario: You’ve completed work on one branch and need to switch to another to test or add features.

The git checkout command helps you switch branches or restore files:

terminal
git checkout feature-new-design
Please run this command either in terminal/command prompt.

git merge

Scenario: After completing work in feature-new-design, you need to integrate it into the main branch.

The git merge command combines changes from one branch into another:

terminal
git merge feature-new-design
Please run this command either in terminal/command prompt.

git rebase -i

Scenario: Your feature branch has a messy commit history, and you want to squash multiple commits into one before merging.

This command opens an interactive rebase session, allowing you to squash, edit, or reorder commits:

terminal
git rebase -i HEAD~3
Please run this command either in terminal/command prompt.

5. Stashing Changes

Stashing allows you to save changes temporarily without committing them.

git stash

Scenario: You need to fix a critical bug on another branch but have uncommitted changes in your current branch.

The git stash command saves your changes and clears your working directory:

terminal
git stash
Please run this command either in terminal/command prompt.

git stash pop

Scenario: After fixing the bug, you’re ready to resume work on your previous changes.

The git stash pop command restores your stashed changes:

terminal
git stash pop
Please run this command either in terminal/command prompt.

6. Cherry-Picking Commits

Cherry-picking allows you to apply specific commits from one branch to another.

git cherry-pick

Scenario: A critical fix was made in another branch, and you want to apply it to your current branch.

The git cherry-pick command applies a specific commit:

terminal
git cherry-pick <commit_hash>
Please run this command either in terminal/command prompt.

7. Resetting and Rewriting History

git reset

Scenario: You accidentally committed a file and want to undo the commit while keeping your changes.

The git reset command moves the current branch pointer and optionally modifies your working directory:

terminal
git reset HEAD~1
Please run this command either in terminal/command prompt.

git rebase

Scenario: Your branch has diverged from main, and you want to clean up the commit history.

The git rebase command reapplies commits on top of another base commit:

terminal
git rebase main
Please run this command either in terminal/command prompt.

8. Squashing Commits

Squashing is used to combine multiple commits into a single one, creating a cleaner history.

git rebase -i

Scenario: Your branch has too many minor commits that should be combined before merging.

Use interactive rebase to squash commits:

terminal
git rebase -i HEAD~4
Please run this command either in terminal/command prompt.

Mark the commits you want to squash with s (squash) in the interactive prompt.


9. Working with Tags

Tags are used to mark specific points in the repository’s history.

git tag

Scenario: You want to create a version tag (e.g., v1.0.0) after a stable release.

The git tag command creates a lightweight or annotated tag:

terminal
git tag v1.0.0
Please run this command either in terminal/command prompt.

git push --tags

Scenario: After creating tags, you need to share them with the remote repository.

This command pushes all tags to the remote:

terminal
git push --tags
Please run this command either in terminal/command prompt.

10. Working with Submodules

Submodules let you include external repositories within your project.

git submodule add

Scenario: Your project depends on an external library hosted in a separate repository.

The git submodule add command includes the external repository as a submodule:

terminal
git submodule add <repository_url>
Please run this command either in terminal/command prompt.

git submodule update --init

Scenario: You’ve cloned a repository with submodules, and you need to initialize them locally.

This command fetches and sets up the submodules:

terminal
git submodule update --init
Please run this command either in terminal/command prompt.

Conclusion

Git is an essential tool for developers, providing robust capabilities for version control and collaboration. By understanding and practicing these commands in real-world scenarios, you can manage your codebase more effectively and contribute confidently to team projects.

Keep this guide handy as a reference, and don't hesitate to explore more advanced Git features as you grow familiar with the basics.


Additional References

Happy coding!

gitversion controldeveloper tools
More like this