Open In App

How to move the most recent commit(s) to a new branch with Git

Last Updated : 21 Jun, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Git is a powerful tool in the modern software world. Chunks of files and code are stored in projects through git branching and committing. Branching allows developers to diverge from the production version of code to fix a bug or add a feature. Whereas when you create a commit, git identifies that snapshot of files with a unique SHA-1 hash. Branching on that commit will create a new pointer along with the master branch. Branches let us work on different versions of a project.

Moving the most recent commits to a new branch is necessary, as in the case if we want to fix a bug without changing the main version of the project. Also, if we want to implement a new feature without effecting the main project, we do git branching. For this, we will create a new branch to the recent commits along with the main branch. Then we move back to the state or commit we want this we do by resetting the master branch. A visual representation is given below.

First and foremost, we need to know some terminological commands to do the task:

  • HEAD –
    Head pointer is the pointer that points to the most recent commit, which is reflected in the working tree. It stands for the currently checked out commit we’re working on.
  • git commit -m <message> – 
    The current contents or changes in the repository are recorded through git committing. After git add  command, all the updated files reach the staging area, after which git commit fetch the changes to the repository with the commit message.
  • git branch <branch> – 
    This command creates a new branch. This branch is nothing but a pointer to the snapshot of our changes from our main repository.
  • Relative references –
    Specifying commits by their hashes is a tedious job. So we use relative commits. One of them is ^ which means moving upwards one commit and ~<num> means moving upwards a number of times.
  • git hard reset to head –
    The purpose of the ‘git reset’ command is to move the current head to the commit specified. The –hard  option is used in order to reset the files of the index or the staging area and the changes in those files are lost, thus untracking them. We need to specify the HEAD or the relative reference of the head to the commit we want to move. We do this using git reset –hard HEAD^ which means resetting back to the commit before head, and git reset –hard HEAD~n,  which means resetting back to the n commits before head.
  • git checkout <branch> –
    The Git checkout command lets us navigate between the branches created by git branch. Checking out a branch updates the files in the working directory to match the version stored in that branch.

Below are the steps to move the most recent commits to the new branch:

  1. First we create 4 commits to the existing repository with unique hashes named C0,C1,C2 and C3, the main branch as well as the head pointer moves along with committing. Now to move the recent, commits to a new branch we will create a new branch named scripter.
  2. git branch scripter command will create a new branch consisting all the code on the master branch. Now as we have created a new branch , we can move the master branch back by one commit or a number of commits as required.
  3. We can do this by git reset –hard HEAD^ and moving the head pointer by one after one commit, git reset –hard HEAD~n will move the master branch ‘n’ commits before the recent commit, and git reset –hard <sha1-commit-hash> will directly move the master branch to the desire commit. Alternatively, –keep instead of –hard preserves the uncommitted changes in unrelated files.
  4. Lastly, git checkout scripter is to checkout the newly formed branch with the version of our project that has recent commits.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads