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

目的

  • ステージングをしてしまった後にコマンド$git diffを実行して差分を取得したいときの方法を先輩から教えてもらったのでまとめる。

結論

  • コマンド$git diffにオプション--cachedをつけて実行する。

ちょっとしたまとめ(manコマンドで調べてみた)

  • ステージングしていない差分はコマンド$git diffのみで取得可能である。
  • コマンド$git diffはindexとtreeを比較して差分があったときに表示する。
  • コマンド$git diff --cachedは指定したコミットに関連する現在ステージングされている変更点を出力する。
3
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
3
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?