2
2

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 3 years have passed since last update.

CodeCommit(git)でpushを取り消す方法

Last updated at Posted at 2021-02-23

はじめに

タイトルの通りです。忘れがちなので自分用のメモです。

やること

CodeCommitの画面でコミットを選択します。

image.png

ブランチを選択して戻りたいコミットのIDをコピーします。

image.png

あとは以下のコマンドを実行します。

git push -f origin <コピーしたコミットのID>:branch名

CodeCommitを確認すると、指定したコミットまでさかのぼっていることがわかります。
revertコマンドとかを使うと、情報を残せるらしいです。

おわりに

誤pushや誤commitは極力控えたいですね。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?