I have two branch in my git repo:

  1. master
  2. seotweaks (created originally from master)

I created "seotweaks" with the intention of quickly merging it back into master, however that was 3 months ago and the code in this branch is 13 versions ahead of "master", it has effectively become our working master branch as all the code in "master" is more or less obsolete now.

Very bad practice I know, lesson learnt.

Do you know how I can replace all of the contents of the "master" branch with those in "seotweaks"?

I could just delete everything in "master" and merge, but this does not feel like best practice.

link|improve this question

60% accept rate
feedback

3 Answers

up vote 92 down vote accepted

You should be able to use the "ours" merge strategy to overwrite master with seotweaks like this:

git checkout seotweaks
git merge -s ours master
git checkout master
git merge seotweaks

The result should be your master is now essentially seotweaks.

link|improve this answer
This also marks a spot where you merged visually (gitk --all or git log --all --graph). Subsequent merges are going to involve commits from that point on. – Adam Dymitruk Oct 12 '10 at 20:01
thank you, thank you, thank you! I managed to bork my master, and couldn't merge the changes in (wanting to overwrite, as the questioner does) – this solution was perfect. – William Denniss Feb 23 '11 at 8:02
Exactly what I was looking for. A great help – bpneal Jul 25 '11 at 11:55
1  
May be too late to add this question but what is wrong with this: git checkout master;git merge -s theirs seotweaks - saves a couple of steps. – Subu Subramanian Sep 22 '11 at 15:12
1  
This isn't working for me. When I do "git merge -s ours master" from the other branch, I get "Already up-to-date." Anything else I can try? – elsurudo Mar 9 at 16:58
show 6 more comments
feedback

What about using git branch -m to rename the master branch to another one, then rename seotweaks branch to master? Then just git push -f origin master

link|improve this answer
Sorry, when I run this, the changes happen only locally. How can I get this to effect the remote branches? Thanks – Jason May 19 '10 at 3:47
4  
@Jason: Try git push -f origin master – Koraktor May 19 '10 at 8:08
feedback

You can rename/remove master on remote, but this will be an issue if lots of people have based their work on the remote master branch and have pulled that branch in their local repo.
That might not be the case here since everyone seems to be working on branch 'seotweaks'.

In that case you can:
(Make a git remote --show to check how your remote is declared within your local repo. I will assume 'origin')
(Regarding GitHub, house9 comments: "I had to do one additional step, click the 'Admin' button on GitHub and set the 'Default Branch' to something other than 'master', then put it back afterwards")

git branch -m master master-old  # rename master on local
git push origin :master          # delete master on remote
git push origin master-old       # create master-old on remote
git checkout -b master seotweaks # create a new local master on top of seotweaks
git push origin master           # create master on remote

But again:

  • if other users try to pull while master is deleted on remote, their pulls will fail ("no such ref on remote")
  • when master is recreated on remote, a pull will attempt to merge that new master on their local (now old) master: lots of conflicts. They actually need to reset --hard their local master to the remote/master branch they will fetch, and forget about their current master.
link|improve this answer
Thanks for the detailed response, when I run 'git push remote :master' I get an error - 'remote' does not appear to be a git repository. – Jason May 19 '10 at 4:02
@Jason: I changed that to 'origin' which might be the default name given to your remote repo. – VonC May 19 '10 at 4:08
@VonC: I'm trying to do that on git-hub repository, but when trying to perform 'git push origin :master' I get a message '[remote rejected] master (deletion of the current branch prohibited)'. As for why I'm doing that... basically I severely mixed up things, importing two times the same patches through github interface and command line push, then getting everything back to work by manual merge. After that I also created another branch with a clean history, but too late... anyway. As it's on my personal experimental repository I should be the only one impacted. – kriss Aug 24 '11 at 8:00
1  
@kriss: GitHub will refuse by default any push rewriting/removing history, unless you force the push: git push -f origin :master. – VonC Aug 24 '11 at 8:08
1  
thanks this was a big help; I had to do one additional step, click the 'Admin' button on github and set the 'Default Branch' to something other than 'master', then put it back afterwards – house9 Oct 12 '11 at 19:07
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.