通常,我只是跑
git add file
git commit
git push
但如果我在推送之前修改提交(使用git commit --amend
),下一次推送将失败
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 在不合并分支的情况下推送更改?我只有一个分支(master
),而且我是唯一使用这个 repo 的人,为什么它这么说呢?
git 分支 -a:
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
编辑:使用gitk HEAD @{u}
,我看到我有 2 个分支,一个带有原始提交,另一个带有修改后的提交。