LoginSignup
1
1

More than 3 years have passed since last update.

【git diff】ファイル差分をみる方法と基本のオプション

Posted at

ファイル別に差分が出力されて見やすいgit diffの基本的なコマンドです

見やすく

git diff --patience

コミット間の差分をみる

git diff {{コミットID A}} {{コミットID B}}

ファイルに出力

git diff > sample.text

差分のあるファイル名だけみる

git diff --name-only

ブランチ間で比較する

git diff {{ブランチA}}..{{ブランチB}}

特定のファイルの差分をみる

git diff {{ファイルパス}}
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