5
4

More than 5 years have passed since last update.

git diff で特定のファイル、ディレクトリを除外する方法(ワンライナー)

Posted at

コードチェックするときに、画像ファイルのコミットは除外したかったりするので、メモ

git diff --name-only origin/master...HEAD | grep -v [除外したいファイル・フォルダの名前] |  xargs git diff origin/master...HEAD

iOSでdiffから画像のコミットを除外したい例

git diff --name-only origin/master...HEAD | grep -v Assets.xcassets |  xargs git diff origin/master...HEAD
5
4
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
5
4