1
1

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】git-diffで必要な情報のみ取得する方法

Posted at

はじめに

git diffの実行結果から削除したファイルのリストなど必要な情報のみ取得する方法について記載します。

方法

以下のように実行することでgit diffにフィルターをかけられます。

git diff --diff-filter=[(A|C|D|M|R|T|U|X|B)…​[*]]

--diff-filterに設定できるフィルタリング文字の意味は以下のとおりです。

文字 意味
A 追加
C コピー
D 削除
M 変更
R 名称変更
T タイプ(通常ファイル、シンボリックリンク、サブモジュールなど)変更
U マージ解除
X 不明
B ペアリング解除

以下のように実行すると削除されたファイルのみのリストを取得できます。

git diff --name-only --diff-filter=D

逆に削除されたファイル以外を除外したい場合にはDを小文字にします。

git diff --name-only --diff-filter=d
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?