1
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.

Git Hub commit の修正方法

Posted at

はじめに
日々の勉強をアウトプットしていきたいと考えております。自分なりの理解した表現でアウトプットしていくので、初学者のため、誤りもあるかと思います。その際はご指摘頂けると幸いです。

誤った情報をpushしてしまった場合の修正方法
revert:間違えてpushしたcommitを取り消すことができます。commitは削除するのではなく、「指定するcommitを取り消すためのcommit」を追加で行います。

revertはcommitされた変更と逆になる変更を追加することで、commitを取り消します。

revertを実行
image.png
1:Git HubDesktopの「History」タブをクリックする。
2:編集したいcommitを右クリックすると、選択肢が出現します。選択肢の一番上の「Revert Changes in Commit」をクリックする。
3:「Push origin」をクリックする。
4:pushが終了したリモートリポジトリを確認する。ブラウザでコードを確認すると、ヘッダーが戻っているかを確認する。

1
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
1
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?