I have a repository in Git. I made a branch, then did some changes both to the master and to the branch.
Then, tens of commits later, I realized the branch is in much better state than the master, so I want the branch to "become" the master and disregard the changes on master.
I cannot merge it, because I don't want to keep the changes on master. What should I do?
Extra: In this case, the 'old' master has already been push
-ed to another repository such as GitHub. How does this change things?
The problem with the other two answers is that the new master doesn't have the old master as an ancestor, so when you push it, everyone else will get messed up. This is what you want to do:
git checkout better_branch
git merge --strategy=ours master # keep the content of this branch, but record a merge
git checkout master
git merge better_branch # fast-forward master up to the merge
If you want your history to be a little clearer, I'd recommend adding some information to the merge commit message to make it clear what you've done. Change the second line to:
git merge --strategy=ours --no-commit master
git commit # add information to the template merge message
Answered 2023-09-20 20:58:46
--strategy=ours
is different from --strategy=recursive -Xours
. I.e. "ours" can be a strategy in itself (result will be the current branch no matter what), or passed as an option to the "recursive" strategy (bring in other branch's changes, and automatically prefer current branch's changes when there's a conflict). - anyone git merge --strategy=ours master -m "new master"
for it to work. - anyone git push
right after this if you want your code pushed up to remote. You may see a warning like Your branch is ahead of 'origin/master' by 50 commits.
This is expected. Just push it! :D - anyone Make sure everything is pushed up to your remote repository (GitHub):
git checkout main
Overwrite "main" with "better_branch":
git reset --hard better_branch
Force the push to your remote repository:
git push -f origin main
Answered 2023-09-20 20:58:46
git reset --hard origin/master
next time they want to pull, else git will try to merge the changes into their (now) divergent local. The dangers of this are explained more in this answer - anyone Edit: You didn't say you had pushed to a public repo! That makes a world of difference.
There are two ways, the "dirty" way and the "clean" way. Suppose your branch is named new-master
. This is the clean way:
git checkout new-master
git branch -m master old-master
git branch -m new-master master
# And don't do this part. Just don't. But if you want to...
# git branch -d --force old-master
This will make the config files change to match the renamed branches.
You can also do it the dirty way, which won't update the config files. This is kind of what goes on under the hood of the above...
mv -i .git/refs/new-master .git/refs/master
git checkout master
Answered 2023-09-20 20:58:46
git branch old-master master; git branch -f master new-master
. Create the backup branch fresh, then directly move master to new-master. (And sorry for misspelling your name, just noticed that) - anyone Rename the branch to master
by:
git branch -M branch_name master
Answered 2023-09-20 20:58:46
git checkout master&&git reset --hard better_branch
? - anyone From what I understand, you can branch the current branch into an existing branch. In essence, this will overwrite master
with whatever you have in the current branch:
git branch -f master HEAD
Once you've done that, you can normally push your local master
branch, possibly requiring the force parameter here as well:
git push -f origin master
No merges, no long commands. Simply branch
and push
— but, yes, this will rewrite history of the master
branch, so if you work in a team you have got to know what you're doing.
Alternatively, I found that you can push any branch to the any remote branch, so:
# This will force push the current branch to the remote master
git push -f origin HEAD:master
# Switch current branch to master
git checkout master
# Reset the local master branch to what's on the remote
git reset --hard origin/master
Answered 2023-09-20 20:58:46
I found the answer I wanted in the blog post Replace the master branch with another branch in git:
git checkout feature_branch
git merge -s ours --no-commit master
git commit # Add a message regarding the replacement that you just did
git checkout master
git merge feature_branch
It's essentially the same as Cascabel's answer. Except that the "option" below their solution is already embedded in the above code block.
It's easier to find this way.
I'm adding this as a new answer, because if I need this solution later, I want to have all the code I need to use in one code block.
Otherwise, I may copy-and-paste, then read details below to see the line that I should have changed - after I already executed it.
Answered 2023-09-20 20:58:46
I found this simple method to work the best. It does not rewrite history and all previous check-ins of branch will be appended to the master. Nothing is lost, and you can clearly see what transpired in the commit log.
Objective: Make current state of "branch" the "master"
Working on a branch, commit and push your changes to make sure your local and remote repositories are up to date:
git checkout master # Set local repository to master
git reset --hard branch # Force working tree and index to branch
git push origin master # Update remote repository
After this, your master will be the exact state of your last commit of branch and your master commit log will show all check-ins of the branch.
Answered 2023-09-20 20:58:46
The solutions given here (renaming the branch in 'master') don't insist on the consequences for the remote (GitHub) repo:
-f --force
Usually, the command refuses to update a remote ref that is not an ancestor of the local ref used to overwrite it. This flag disables the check. This can cause the remote repository to lose commits; use it with care.
If others have already pulled your repo, they won't be able to pull that new master history without replacing their own master with that new GitHub master branch (or dealing with lots of merges).
There are alternatives to a git push --force for public repos.
Jefromi's answer (merging the right changes back to the original master) is one of them.
Answered 2023-09-20 20:58:46
One can also checkout all files from the other branch into master:
git checkout master
git checkout better_branch -- .
and then commit all changes.
Answered 2023-09-20 20:58:46
To add to Cascabel's answer, if you don't want to place a meaningless merge in the history of the source
branch, you can create a temporary branch for the ours
merge, then throw it away:
git checkout <source>
git checkout -b temp # temporary branch for merge
git merge -s ours <target> # create merge commit with contents of <source>
git checkout <target> # fast forward <target> to merge commit
git merge temp # ...
git branch -d temp # throw temporary branch away
That way the merge commit will only exist in the history of the target
branch.
Alternatively, if you don't want to create a merge at all, you can simply grab the contents of source
and use them for a new commit on target
:
git checkout <source> # fill index with contents of <source>
git symbolic-ref HEAD <target> # tell git we're committing on <target>
git commit -m "Setting contents to <source>" # make an ordinary commit with the contents of <source>
Answered 2023-09-20 20:58:46
My way of doing things is the following
#Backup branch
git checkout -b master_backup
git push origin master_backup
git checkout master
#Hard Reset master branch to the last common commit
git reset --hard e8c8597
#Merge
git merge develop
Answered 2023-09-20 20:58:46
For me, I wanted my develop
branch to be back to the master after it was ahead.
While on develop:
git checkout master
git pull
git checkout develop
git pull
git reset --hard origin/master
git push -f
Answered 2023-09-20 20:58:46
If you are using eGit in Eclipse:
Answered 2023-09-20 20:58:46
The following steps are performed in the Git browser powered by Atlassian (Bitbucket server)
Making {current-branch} as master
master
and name it “master-duplicate”.Answered 2023-09-20 20:58:46
I know this is not what OP wanted, but you can do this if you know you will have a similar problem to OP in the future.
So here's your situation,
If this feels confusing, see the below diagram of the bad situation.
*bad situation*
initial master ---> added boring changes ----merge---> you loose boring
\ /
---> (awesome branch) added awesome changes ---
To solve this( i.e. to stop the loss of boring), do the following Basically,
git branch boring
Replace boring with whatever name you want to keepSo,
*good situation*
initial master ---> added awesome changes ---> Final master(awesome) branch
\
---> (boring branch) added boring changes ---> Dont merge to master --X-->
Answered 2023-09-20 20:58:46
code
blocks rather than using screenshot images? It's considered bad practice to use screenshots (it's less searchable, can't be read by software for the blind, can't be copy-pasted, etc.) - anyone --X-->
in this version compared to the screenshot. Which words are messed up? - anyone so
to it. I was the one that gave you the +1 when you had -1, so I can't upvote again, but thanks for fixing it. - anyone Just go to the gitlab or github website and find for settings.
Then under settings find for repository.
There find for default branch, expand it and you can get the options to rename it or change it to other branch.
I tried this in gitlab and it worked.
Answered 2023-09-20 20:58:46
I'm surprised this isn't an answer here. This is what I did.
This way, there is a single commit with all the differences included, the commit history is preserved, and no hard force pushes are required.
Answered 2023-09-20 20:58:46