繁体   English   中英

如何在初始(根)提交中编辑和推送更改?

[英]How to edit and push the change in initial (root) commit?

所以,简单解释一下我目前的情况:

  • 我一直在将更改推送到 origin master(尚未创建分支)
  • 我决定更改 Github 存储库初始提交的提交消息
  • 我做了$ git rebase -i --root并成功更改了提交消息
  • 我试图通过执行$ git push --force来强制推送,但出现以下错误:

     fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin master.
  • 我试图按照说明进行操作,但得到:

! [rejected]        master -> master (non-fast-forward) error: failed
to push some refs to 'git@github.com:BLAHBLAH.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.

我究竟做错了什么?

如果您只是想修改最后一次提交 - 使用 ammend

# Change the latest commit message
git commit --amend --no-edit -m"<new message>

要推送您的更改:

使用这个命令:

# It will set up the "track" and will force the push
git push --set-upstream origin master -f

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM