2

私は、作成者がアップストリーム リポジトリと同じブランチで変更をコミットしている git リポジトリを知っており、時々アップストリームとマージします。

アップストリームの git リポジトリと同じブランチにコミットされている git リポジトリを除外するパッチを確認するにはどうすればよいですか?

4

1 に答える 1

0

あなたは試すことができますgit cherry

       git-cherry - Find commits not merged upstream

SYNOPSIS
       git cherry [-v] [<upstream> [<head> [<limit>]]]

DESCRIPTION
       The changeset (or "diff") of each commit between the fork-point and
       <head> is compared against each commit between the fork-point and
       <upstream>. The commits are compared with their patch id, obtained from
       the git patch-id program.

       Every commit that doesn't exist in the <upstream> branch has its id
       (sha1) reported, prefixed by a symbol. The ones that have equivalent
       change already in the <upstream> branch are prefixed with a minus (-)
       sign, and those that only exist in the <head> branch are prefixed with
       a plus (+) symbol:
于 2013-01-04T01:42:06.153 に答える