JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

All

Difference between git checkout and git clone

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article discusses the difference between git checkout and git clone commands in Git . If you are coming from an SVN environment, you might find yourself confused because git clone the equivalent of in SVN is svn checkout . By the end o...

Full

Ignore local file changes in Git

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article shows how we can ignore local file changes in Git when updating from a remote repository. Sometimes, git pull Git may give an error like the one shown below when you try to run . Updating 0376abc..1chd7a5 error: Your local chan...

Full

Rolling back to an old commit in a public Git repository

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article explains how we can roll back a public Git repository to an old commit. When using Git version control, we can go back to any desired point. Without further ado, let’s get into today’s agenda. Rolling back to an old commit...

Full

Git Pull and Merge Commands

Publish Date:2025/04/03 Author:JIYIK Category:Git

In the vast world of version control systems, Git is the only fast, well-organized, in-demand, and easily accessible version control system that enables users to work on various projects simultaneously in an efficient manner without any col...

Full

Git Pull Origin branch overwrites Master branch

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article explains how we can revert the changes made to the master git pull origin branch branch after running the command . Assume that you have a master branch and a feature branch in your local and remote repositories . You pull chan...

Full

Difference between Git Merge Origin/Master and Git Pull

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article outlines the differences between the git merge origin/master and git pull commands. These two commands integrate changes from a remote repository into the current local branch. However, each command's operation is unique and ha...

Full

How to determine the current branch in Git

Publish Date:2025/04/03 Author:JIYIK Category:Git

Git is a unique and popular version control system that is used by most of the software developers to keep an eye on the changes made in various applications and stay connected with other teams on the running projects. It helps large teams...

Full

The difference between Fork and Branch on GitHub

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article discusses the difference between Form and Branch on GitHub. In the context of coding, the current era relies more on collaboration. GitHub is one of the most commonly used collaboration tools. Forking and branching on GitHub ar...

Full

View merged and unmerged branches in Git

Publish Date:2025/04/03 Author:JIYIK Category:Git

This article discusses how to list merged and unmerged branches in Git. Git branches encourage convergent evolution of code. This is where we create a branch as a temporary space to work on a feature, and then merge the branch with its orig...

Full

Git shows remote tracking branches

Publish Date:2025/04/03 Author:JIYIK Category:Git

Branches on remote Git repositories are called remote branches. These are pointers to our remote repositories, including branches, tags, etc. Local branches only exist on each developer's local personal computer, but there is only one remot...

Full

Undo the last commit in the remote Git repository

Publish Date:2025/04/02 Author:JIYIK Category:Git

Undo the last commit in the remote Git repository

This article will discuss removing the last commit from the remote Git repository. Git can easily roll back to a previous commit if the current commit does not meet our expectations. Let’s see how to do this. Undo the last commit in the r...

Full

Undo the last Git commit in the local repository

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article will discuss how to undo the latest commit in Git. This comes in handy when we want to remove the changes introduced by a commit before pushing it to the remote repository. Let’s get right into it. Undo last commit in Git wit...

Full

Git creates a branch from a commit

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article will demonstrate how to create a new branch from a commit. To create a branch from a SHA commit, use the command git branch new_branch commit_sha with the commit as the last argument. You can also use symbolic references instea...

Full

Git revert multiple commits

Publish Date:2025/04/02 Author:JIYIK Category:Git

In this article, we will see how to revert multiple commits in Git. In Git, we may have completed many commits for some feature development, or submitted some bug fixes. We might now decide to abandon this work. Therefore, to restore the re...

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial