web-dev-qa-db-ja.com

Git:異なるブランチの2つの異なるファイルを比較するにはどうすればよいですか?

異なるブランチに2つの異なるファイルがあります。 1つのコマンドでそれらを比較するにはどうすればよいですか?

何かのようなもの

# git diff branch1/foo.txt branch2/foo-another.txt

私は他のファイルをチェックアウトし、それを差分して復元することができましたが、それはかなり汚い解決策です。

158
Ondra Žižka
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
203
twaggs

補足:完全なパスは不要です。./相対パス。時々便利です。

git diff branch1:./relative/path/to/foo.txt branch2:./relative/path/to/foo-another.txt
21
Campa

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の2つの異なるブランチのファイルを比較する

1
Javier C.

追加するだけで、非常に単純な構文であることがわかります。

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>
1
RomainValeri

適用するgit diffの開始と範囲を指定できます。範囲は..表記で示されます。

branch1=somebranch
branch2=someotherbranch
git diff ${branch1}..${branch2} -- file_path
0
JCF