My master GIT branch seams to have some errors thus I'd like to recheck, re-merge or possibly clone my dev branch over the master branch so the master branch would be a copy of dev.
How can I do that? Thx.
|
feedback
|
|
If the problem is simply that your checked-out files don't match up with the branch, just use
That should be all you need. However, if you still want to overwrite master with dev, read on. If you want to overwrite your master branch with the contents of your dev branch, use
And then if you want to push this somewhere else:
Note that if your dev branch doesn't fast-forward from your master branch (which I'm guessing it won't, since you said that your master branch has some screwed up stuff in it), you'll need to add the
Note, however, that this can involve all of the normal caveats of rewriting history a la To avoid this problem in the future, advise your friend that using | |||||||||
feedback
|
|
From you comments it seems there are three possible cases:
First, back everything up. Then: In case 1, use In case 2, add and commit everything in the working copy. In case 3, use In all three cases tell your friend to never use Also, it's probably best not to push into a non-bare repository (i.e. one with a working copy). I'd suggest you set up a bare repository somewhere that you both push and pull from rather than pushing directly into a repo that has a working copy. Use Did I mention back everything up? Good. Do it. | |||||
|
feedback
|
|
Good question. I have wanted to do this before myself and I never did. My best guess might be to try the below. NOTE I'm not sure how well this will work for you since I have not done it myself.
Doing it the above way will likely cause conflicts. | |||||||||
feedback
|
devdescended frommaster? How different are they? – Cameron Skinner Dec 21 '10 at 0:48