4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Github リモートブランチにマージしたものを取り消す(自分めも)

Posted at

超参考なりました
https://techtechmedia.com/merge-cancel-git/

Githubになれず、リモートにマージしたら他の人の更新を戻しちゃうよって焦った時のメモ

# やっちまったブランチに移動
git checkout やっちまったブランチ

# これ以上傷を増やさないように最新にしておく
git pull origin やっちまったブランチ

# ログを確認、戻したい commit XXX を確認
git log

# 戻る
git reset --hard XXX

# リモートブランチに戻ったところをPush
git push -f origin やっちまったブランチ

ドキドキしながらGithubのサイトを確認して、やっちまった自分のマージが撲滅されていることを確認する

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?