異なるブランチに2つの異なるファイルがあります。 1つのコマンドでそれらを比較するにはどうすればよいですか?
何かのようなもの
# git diff branch1/foo.txt branch2/foo-another.txt
私は他のファイルをチェックアウトし、それを差分して復元することができましたが、それはかなり汚い解決策です。
git diff branch1:full/path/to/foo.txt branch2:full/path/to/foo-another.txt
相対パスを使用することもできます。
git diff branch1:./relative/path/to/foo.txt branch2:./relative/path/to/foo-another.txt
補足:完全なパスは不要です。./
相対パス。時々便利です。
git diff branch1:./relative/path/to/foo.txt branch2:./relative/path/to/foo-another.txt
2つの異なるブランチからのファイルを比較する多くの方法があります。例えば:
名前が同じまたは異なる場合:
git diff branch1:file branch2:file
例:
git diff branch1:full/path/to/foo.txt branch2:full/path/to/foo-another.txt
名前が同じで、現在の作業ディレクトリをブランチと比較する場合のみ:
git diff ..someBranch path/to/file
例:
git diff ..branch2 full/path/to/foo.txt
この例では、実際のブランチのファイルをマスターブランチのファイルと比較しています。
次の応答を確認できます。
追加するだけで、非常に単純な構文であることがわかります。
git diff <branch1> <branch2> <filepath>
たとえば、次のような相対参照でも動作します。
# compare the previous committed state from HEAD with the state branch1 was 3 commits ago
git diff HEAD^ <branch1>~3 <filepath>
適用するgit diff
の開始と範囲を指定できます。範囲は..
表記で示されます。
branch1=somebranch
branch2=someotherbranch
git diff ${branch1}..${branch2} -- file_path