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?

Gitを基本からまとめてみた【便利なコマンド】

Last updated at Posted at 2024-03-05

commit --amend

commit --amendを利用することで、直前のコミットを書き換えることができる。
変更を追加したり、コミットメッセージを書き換える事ができる。

(1)現在の変更を直前のコミットに統合する

git status
// 現在のコミット履歴のログの確認
git log --oneline

//現在の変更をaddして、commitコマンドを --amendオプションをつけて実行する
git add .
git commit --amend
//コミットメッセージを書き換えられるエディタが開く。必要があればここでコミットメッセージを書き換える。

git status
// 現在のコミット履歴のログの確認
git log --oneline
git show (指定番号)

(2) 直前のコミットメッセージを修正する

git status
git log --oneline
git commit --amend

ログメッセージを追加

git log --oneline

git rebase -i

(1)コミット同士を合わせたい

git rebase -i (指定番号)
pick
git rebase --continue
git log --oneline

参考サイト

Git中級者への第1歩! レビュー品質向上の秘訣、コミットに便利なコマンドを紹介

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?