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

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

所以,简单说明一下我现在的情况:

! [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