6 git-cherry - Find commits not merged upstream
10 'git-cherry' [-v] <upstream> [<head>] [<limit>]
14 The changeset (or "diff") of each commit between the fork-point and <head>
15 is compared against each commit between the fork-point and <upstream>.
17 Every commit that doesn't exist in the <upstream> branch
18 has its id (sha1) reported, prefixed by a symbol. The ones that have
19 equivalent change already
20 in the <upstream> branch are prefixed with a minus (-) sign, and those
21 that only exist in the <head> branch are prefixed with a plus (+) symbol:
23 __*__*__*__*__> <upstream>
26 \__+__+__-__+__+__-__+__> <head>
29 If a <limit> has been given then the commits along the <head> branch up
30 to and including <limit> are not reported:
32 __*__*__*__*__> <upstream>
35 \__*__*__<limit>__-__+__> <head>
38 Because git-cherry compares the changeset rather than the commit id
39 (sha1), you can use git-cherry to find out if a commit you made locally
40 has been applied <upstream> under a different commit id. For example,
41 this will happen if you're feeding patches <upstream> via email rather
42 than pushing or pulling commits directly.
51 Upstream branch to compare against.
54 Working branch; defaults to HEAD.
57 Do not report commits up to (and including) limit.
61 Written by Junio C Hamano <junkio@cox.net>
65 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
69 Part of the gitlink:git[7] suite