On Tue, Dec 2, 2008 at 3:09 PM, Nicholas Wieland wrote: > Il giorno 02/dic/08, alle ore 17:32, Peter Harris ha scritto: > >> On Tue, Dec 2, 2008 at 11:10 AM, Nicholas Wieland wrote: >>> >>> Hi *, >>> I need to overwrite my master branch with another branch. I've already >>> created a backup branch of my master. >> >> While on master, >> "git reset --hard <newbranch>" > > That's what I tried. > Unfortunately I don't know where to go after: > > ngw@slicingupeyeballs ~/zooppa$ git commit > # On branch master > # Your branch and 'origin/master' have diverged, > # and have 444 and 25 different commit(s) each, respectively. > # > nothing to commit (working directory clean) That means your tracking branch is different from your local branch, by a lot. > Do I have to push ? If I pull it tries to merge ... If you push, it will be denied (non-fast-forward). If you force push, your state will be as you expect. Be aware that you're creating trouble for everyone else who uses 'origin' if you force push. Also be aware that you will be undoing any changes that anyone else has pushed to origin in the mean time. Basically, history is history. If you don't want to cause problems for the other users of 'origin', you may have to live with history as it is. You won't be able to overwrite master, although you will probably try to be more careful in the future. Peter Harris -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html