JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Moving commits to another branch in Git

Author:JIYIK Last Updated:2025/04/01 Views:

Git is a very useful and powerful tool in the modern software world. Many types of files and codes can be stored through branches and commits in Git. Branches are a different concept depending on the version control system you use. Many developers consider it the most preferred version control system due to its efficiency.

Most of the time, we face a situation when after completing some work and committing to a particular branch, we realize that we have committed to the wrong branch by mistake and want to commit again on another branch. Git comes to our rescue and allows us to move commits to other existing branches or new branches.

This guide will give us a basic understanding of how to move our commits to another branch, which could be a new or existing branch. Additionally, we will discuss how to use the git branch command to create new branches, git resetthe command to move commits, and the git merge command to merge those changes back into the main branch.


Counting commits for migrations in Git

Before we start the whole process, we need to judge the situation. Assume that we have already checked out the branch we want to change; to do this, we need to understand the history.

We will use the following command to calculate the number of commits to move.

git log

After executing, we can see HEADthat are origin/HEADthe two commits at the head of , which are the two desired commits we need to move to another branch. Below are the remaining steps, where we will describe how to move these commits to a new or existing branch.


Moving commits to a new branch in Git

The steps mentioned below will show us how to move the latest commit to a new branch.

  • Create a new branch
    git branch feature/new branch
    

    This command will create a new branch that will contain master(current)all the commits from the branch.

  • Move the current branch back two commits
    git reset --keep HEAD~2
    
  • Check out the new branch
    git checkout feature/new branch
    

By executing these, our two latest commits have been masterremoved from (current branch) and added to a feature/new branchnew branch called .


Moving commits to an existing branch in Git

The steps mentioned below will show us how to move the latest commit to an existing branch. This is useful for us if we have been working with feature branches, but we started making commits in the wrong branch by mistake. Let's assume that the current branch and the commit we want to delete is master.

  • Check out existing branches
    git checkout feature/existing branch
    

    The command git checkoutis not limited to working with the working directory. It can also be used to HEADmove the reference pointer to a reference point on a branch.

  • Merge master branch
    git merge master
    

    git mergeThe command can also be used to merge a branch into the current branch, but only if the current branch has already been merged into the branch being merged.

  • View the master branch<
    git checkout master
    

    The command checkoutmaster pulls down the latest version of the code and creates a masternew branch called .

  • Move the current branch back two commits:
    git reset --keep HEAD~2
    

    --keepThe -p option will reset the index entries and update the working tree HEADfor files that differ between commit and . reset will terminate when files differ between commits and HEAD has local changes. Thus, the latest two commits are masterremoved from and added to the existing branch.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Use Git Prune command to clean up Git repository

Publish Date:2025/04/01 Views:73 Category:Git

In this article, we will discuss git prune the command and its uses. We know that Git is very careful with our data. When we delete data like commits, Git doesn't easily lose them. This can lead to stale data piling up in our machines. This

Git diff shows diff details of uncommitted changes

Publish Date:2025/03/31 Views:105 Category:Git

This article outlines how we can get diff details of uncommitted work in Git. We use the git diff command to show the differences between various Git references, such as commits, the index, and the working tree. We can use this command to d

Staging area in Git

Publish Date:2025/03/31 Views:152 Category:Git

In this article, we will learn about the staging area in Git . Git is a version control system that maintains a history of changes made to a project directory. Git uses commits to track changes. Git has three internal management systems, on

Add all files in a folder to commit in Git

Publish Date:2025/03/31 Views:159 Category:Git

This article will discuss the necessary steps to add all of your files into one folder for submission. If you have a folder with a dozen files, adding the files one by one can be tedious. Fortunately, Git allows us to add all the contents o

Meaning of Fetch_Head in Git

Publish Date:2025/03/31 Views:64 Category:Git

This article defines Fetch_HEAD in Git . This reference is an integral part of the git pull command and is important when merging changes from a remote repository into a local repository or branch. If you're not sure what Fetch_Head means,

Get all branches in Git

Publish Date:2025/03/31 Views:63 Category:Git

This article discusses how to fetch all branches from a remote repository. The git fetch command is a useful utility when you want to download changes from a remote repository without having to update your local branches. Sometimes, you may

Clone a Git repository with a specific revision

Publish Date:2025/03/31 Views:83 Category:Git

This article discussed various methods that we can use to clone a Git repository with a specific revision or changeset. This comes in handy when you have a repository with large files and you only need a specific version of the code. Instea

Squash commits pushed in Git

Publish Date:2025/03/31 Views:87 Category:Git

This article outlines the process of squashing commits that we have pushed to a remote repository. We squash the commits into one to reduce clutter in the repository. To squash the commits, we run git rebase in interactive mode . Squash com

Git squash all commits

Publish Date:2025/03/31 Views:65 Category:Git

In every developer’s life, the word squash is often used while working with the Git distributed control system . This feature in Git is a handy option that developers often use to achieve a neat workflow in their development team. In this

Scan to Read All Tech Tutorials

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

Recommended

Tags

Scan the Code
Easier Access Tutorial