上記のdenbuzzeが示唆していることをしないでください!! プッシュ内の + (プラス記号) は、早送り以外の更新を静かに受け入れるようにします。これがダングリング コミットにつながることで取り返しのつかないほど作業が失われる可能性があるという難しい方法を発見しました。プラス記号を削除するだけで、より安全なアプローチになります。
push = refs/heads/master:refs/heads/gh-pages
push = refs/heads/master:refs/heads/master
強制的に更新する代わりに、警告とプルの提案が表示されるようになりました
To https://github.com/someuser/repo.git
! [rejected] master -> gh-pages (fetch first)
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://github.com/someuser/repo.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.