LoginSignup
9
6

More than 5 years have passed since last update.

git diffで追加されたファイルのリストを一覧する方法

Posted at

本稿では、git diffコマンドを用い、あるコミットとあるコミットの間で追加(Added)されたファイルの一覧を表示する方法を紹介する。

git diff $FROM $TO --name-only --diff-filter=A

例: コミットID cd216c3dcからHEADまでに追加されたファイル一覧を表示する

git diff cd216c3dc HEAD --name-only --diff-filter=A

例: release/1.0.0からmasterまでに追加されたファイル一覧を表示する

git diff release/1.0.0 master --name-only --diff-filter=A

参考文献

9
6
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
9
6