Skip to main content

Essential Git Commands: A Beginner's Guide to Version Control

Git Commands Guide

This article offers a quick overview of essential Git commands, organized for easy access.

Getting Started

  1. Initialize Repository: git init - Start a new Git repository in the current directory.
  2. Clone Repository: git clone [URL] - Download an existing repository from a remote source.

Working with Remotes

  1. List Remotes: git remote -v - View all remote connections.
  2. Add Remote: git remote add [name] [URL] - Connect a new remote repository.
  3. Remove Remote: git remote rm [name] - Delete a remote connection.
  4. Fetch Remote Changes: git fetch [remote] - Download updates without merging.
  5. Pull Changes: git pull [remote] [branch] - Fetch and merge changes from a remote branch.
  6. Push Changes: git push [remote] [branch] - Upload changes to a remote branch.

Branching & Merging

  1. List Branches: git branch - See all branches in the repository.
  2. Create Branch: git branch [name] - Make a new branch.
  3. Switch Branch: git checkout [name] - Move to an existing branch.
  4. Create & Switch Branch: git checkout -b [name] - Create and switch to a new branch simultaneously.
  5. Merge Branch: git merge [branch] - Combine changes from one branch into the current branch.
  6. Delete Branch: git branch -d [name] - Remove a branch that has been merged.

Making Changes

  1. Status: git status - Show the current status of the working directory and staging area.
  2. Add Changes: git add [file/directory] - Stage changes for the next commit.
  3. Commit Changes: git commit -m "[message]" - Save changes with a descriptive message.
  4. Amend Commit: git commit --amend - Edit the most recent commit.
  5. Reset: git reset [file] - Unstage changes while keeping them in the working directory.
  6. Hard Reset: git reset --hard [commit] - Reset the current branch to a specific commit, discarding all changes.

Reviewing History

  1. Log: git log - Display a list of past commits.
  2. Log (Graph): git log --graph - View commit history as a graph.
  3. Show Change: git show [commit] - Show details of a specific commit.
  4. Diff: git diff [branch] - Compare changes between branches or commits.

Cleanup & Maintenance

  1. Stash Changes: git stash - Temporarily save changes without committing.
  2. Apply Stash: git stash pop - Retrieve stashed changes.
  3. Clean Untracked Files: git clean -f - Remove files not tracked by Git.

Advanced & Miscellaneous

  1. Rebase: git rebase [branch] - Reapply commits on top of another base commit.
  2. Cherry-pick: git cherry-pick [commit] - Apply a specific commit from one branch onto another.
  3. Tag: git tag [name] - Create a tag for marking specific points in the commit history.
  4. Search Log: git log --grep="[pattern]" - Search commit messages for a pattern.

Comments

Popular posts from this blog

A Complete CI/CD Pipeline

Complete CI/CD Pipeline Using GitHub, Jenkins, Maven, SonarQube, Nexus, and Docker A well-designed CI/CD pipeline plays a critical role in modern DevOps practices by automating software delivery, improving code quality, and reducing deployment risks. In this article, I will explain how I build an automated CI/CD pipeline using GitHub, Jenkins, Maven, SonarQube, Nexus Repository, Docker, and Docker Hub. Source Code Management with GitHub The CI/CD workflow begins with storing the application source code in GitHub. Developers regularly push code changes or create pull requests to collaborate on features and bug fixes. Whenever new code is pushed to the repository, GitHub triggers Jenkins automatically through a webhook. This integration helps start the CI/CD pipeline without manual intervention. Code Checkout Stage in Jenkins The first stage of the pipeline is the checkout process. Jenkins connects to the GitHub repository and pulls the latest version of the source code. ...

Common Jenkins Errors and How to Fix Them

As you work with Jenkins, you might run into a variety of issues. Here's a rundown of some of the most common problems and how to resolve them: 1. Permission Issues: 😣 Error: Jenkins can't access files. ✅ Solution: Ensure Jenkins has the appropriate permissions or run it as the correct user. 2. Build Failures: 😡 Error: Builds are failing. ✅ Solution: Review the logs, and address issues such as missing dependencies or incorrect configurations. 3. Workspace Cleanup Problems: 🚫 Error: Workspace becomes cluttered. ✅ Solution: Configure Jenkins to automatically clean up after each build to prevent unnecessary file accumulation. 4. Plugin Compatibility Issues: 😬 Error: Plugins are not working with Jenkins. ✅ Solution: Make sure your plugins a...

What is Linux?

Linux is an Open-Source Operating System based on Unix.  Linux was first introduced by Linus Torvalds.  The main purpose of Linux was to provide free and low-cost Operating System for users. Since Linux is cost-free, so it is conveniently downloadable and used by people.  Linux is open-source, so it is open to use, and developers may also try to improve the Linux operating system’s features.  It’s a multi-use operating system so multiple people may use the model.  Linux can operate on various types of hardware, so Linux is transportable.  Linux is secure, as it offers secure passwords and data encryption.