1

I have a specific question to GIT History. It is possible to compare two branches and get a list with all files there changed? If yes then tell me how, please.

The reason is I need merge a branch in the other branch. From a developer there is not aviable anymore... And I need to know which files he has changed.

Thanks a lot, Florian

4

1 に答える 1

1

2つのブランチ間の差分を確認してください -

git diff branch1 branch2

param を使用statして、異なるファイルのみを一覧表示します。

git diff --stat branch1 branch2
于 2017-06-02T08:54:01.143 に答える