- 現在のブランチの履歴を確認し、戻したいコミットのIDを見つける
git log --oneline
- 指定したコミットにHEADをリセットする(ここではHEADから2つ前のコミットを指定)
git reset --hard HEAD~2
- 強制的にプッシュしてリモートの履歴を上書きする(この操作は他の人がそのブランチの変更をプルしている場合、問題を引き起こす可能性があるため注意)
git push origin HEAD --force
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme