Make the development branch the same as the master branch in Git
This article discusses resetting the develop branch to make it the same as the master branch. It assumes that you have cloned a Git repository and created a develop branch off of the master branch.
After a while of banging around with your code, you realize your branch is a mess and want to reset it back to match the master branch. What do you think of this?
Make the develop branch identical to the master branch
There are two ways we can reset our development branch to master . The simplest and cleanest is to recreate the pointer.
To recreate the pointer to the develop branch, switch to the master branch and run the following command.
$ git branch -f development master
This will reset the commit history of the develop branch to match the commit history of the master branch.
Another way is to use git reset command. First, switch to the development branch and run the command below.
$ git reset --hard master
This command git branch -f
has the same effect as the command. However, both commands eliminate changes in the development branch that do not exist in the master branch.
If you don't want to eliminate these changes, you can create a commit that reflects the current state of the master branch. To do this, follow these steps:
First, switch to the development branch using the git checkout development command. Merge the master branch into the develop branch without creating a commit, as shown below.
$ git merge master --no-commit
This command will merge the changes but stop merging before committing the parts. Using the command below, you can check out the changes of the master branch from the index.
$ git checkout --theirs master .
Don’t forget to include the . at the end of the command. All that’s left is to commit the changes.
$ git commit -m"Resetting development to master"
This will preserve changes that are not present in the master branch and mirror the current state of the master branch.
git reset --hard
In short, you can reset any branch to master
by recreating the pointer or with the help of command. Both of these ways will eliminate the changes that are not present in the master branch.
If you want to keep these changes, use the last method we discussed.
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.
Related Articles
Git authentication
Publish Date:2025/03/28 Views:163 Category:Git
-
This article demonstrates connecting a local repository to a remote repository on GitHub/Gitlab without getting 身份验证失败 error messages. Creating a local repository from scratch in Git To create a local repository from scratch, fo
Log graphs in Git
Publish Date:2025/03/28 Views:96 Category:Git
-
This article shows you how to use git log the command to graphically view the commit history in Git. Viewing log graphs in Git The command git log displays all the repository history at once snapshots(commits) . This command has a default f
Git refresh remote branch
Publish Date:2025/03/28 Views:93 Category:Git
-
Git is considered to be the most accurate and the most used software by developers in their projects and can be operated by multiple developers simultaneously. It provides many unique and quirky features to the developers which are very dif
Updating Git on Mac
Publish Date:2025/03/28 Views:181 Category:Git
-
When working on Git, you should stay updated with the latest version to get its latest features. This article will discuss how to install and update the latest version of Homebrew and Git on your personal computer. Homebrew on Mac Homebrew
Enable Git Tab Auto-Complete
Publish Date:2025/03/28 Views:109 Category:Git
-
This tutorial demonstrates how to enable git tab autocompletion. Importance of enabling Git Tab auto-completion When developers work with source code, they mostly prefer Git as it is a very familiar and convenient platform for developers th
Restoring a repository in Git
Publish Date:2025/03/28 Views:158 Category:Git
-
Sometimes while using Git, we come across a situation where we want to pull the latest changes from the remote repository and it conflicts with the existing modifications or files, then we have to push those files to the storage. Git provid
Undo Git Stash Pop conflicts
Publish Date:2025/03/28 Views:178 Category:Git
-
You can undo this using the solutions in this article git stash pop with merge conflicts . We show you how to abort an erroneous stash pop operation and return to a clean state. But we also demonstrated a git stash pop way to resolve the co
Resolving Git stash conflicts without committing
Publish Date:2025/03/28 Views:72 Category:Git
-
This article outlines the steps you should follow to resolve Git stash conflicts without reverting or creating commits. For a simpler context, we will simulate a situation where the git stash pop command results in a conflict and try to res
Git Stash needs to be merged
Publish Date:2025/03/28 Views:128 Category:Git
-
Git is a stylish platform that provides us with many features, one of the main ones is storage. With this unique feature, we can accumulate a lot of unchanged work that we don't want to commit to our repository when the code is checked in;