Git:用头删除或替换master分支

时间:2015-11-03 01:53:32

标签: git bitbucket

我在项目中遇到了一个问题,并且搞砸了一些东西,所以我检查了一个旧版本。我认为我将当前签出的版本作为主版本并丢弃了搞砸的版本。看起来没有发生因为在跑完之后:

git push -u origin master

我收到了这些错误:

error: failed to push some refs to 'https://username@bitbucket.org/username/project.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details

我对git有基本的了解,并且不想恢复或整合恶魔大师分支。我很确定'git pull'正是我不想要的。我在找什么命令?

1 个答案:

答案 0 :(得分:1)

已发布的历史记录(在bitbucket" origin"方面)是:

--o--o--o--o--O (origin/master)

在你身边:

--o--o--o--o (master)

如果您想origin/master替换master,则必须push --force -u origin master
但要小心,并在更改其历史记录之前检查其他人是否已在使用origin/master