cherry-pickで反映したコミットは「git reset」コマンドで取り消すことができる。
$ git reset --hard HEAD~
cherry-pickしたブランチをリモートに上げてしまっている場合、取り消ししたブランチをpushしようとすると以下のようなエラーになってしまう。
$ git push origin master
To https://gitlab.com/hoge/hogehoge.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://gitlab.com/hoge/hogehoge.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.
これを回避するため、pushする際は「-f」オプションをつける必要がある。
$ git push -f origin master
※「git reset」コマンドを使用する場合ログに残らないので、残したい場合は「git revert」コマンドを使用する