rebase/cherry-pick を使用して、最後の 2 つのコミットを削除しようとしています。呼び出した後git rebase HEAD^^^ -i
、必要なコミットのみを残します (すべてを に任せるHEAD^^
ので、 and を削除HEAD^
しHEAD
ます)。
その後、git push
次のように表示されます。
! [rejected] dev -> dev (non-fast-forward)
error: failed to push some refs to 'git@bitbucket.org:XXXXXX/YYYYYYYYY.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 pull
前の HEAD コミットを早送りするだけです。だから、私は私が始めたもので終わっています。私は何を間違っていますか?