2005-08-23 10:49:47 +02:00
|
|
|
git-cherry(1)
|
|
|
|
=============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-cherry - Find commits not merged upstream
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2009-01-01 22:56:29 +01:00
|
|
|
'git cherry' [-v] [<upstream> [<head> [<limit>]]]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-05-05 21:06:07 +02:00
|
|
|
The changeset (or "diff") of each commit between the fork-point and <head>
|
|
|
|
is compared against each commit between the fork-point and <upstream>.
|
2008-06-30 20:56:34 +02:00
|
|
|
The commits are compared with their 'patch id', obtained from
|
2010-01-10 00:33:00 +01:00
|
|
|
the 'git patch-id' program.
|
2006-05-05 21:06:07 +02:00
|
|
|
|
2006-10-25 08:14:30 +02:00
|
|
|
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
|
2006-05-05 21:06:07 +02:00
|
|
|
in the <upstream> branch are prefixed with a minus (-) sign, and those
|
2006-10-26 23:32:41 +02:00
|
|
|
that only exist in the <head> branch are prefixed with a plus (+) symbol:
|
|
|
|
|
|
|
|
__*__*__*__*__> <upstream>
|
|
|
|
/
|
|
|
|
fork-point
|
|
|
|
\__+__+__-__+__+__-__+__> <head>
|
|
|
|
|
|
|
|
|
|
|
|
If a <limit> has been given then the commits along the <head> branch up
|
|
|
|
to and including <limit> are not reported:
|
|
|
|
|
|
|
|
__*__*__*__*__> <upstream>
|
|
|
|
/
|
|
|
|
fork-point
|
|
|
|
\__*__*__<limit>__-__+__> <head>
|
|
|
|
|
2006-05-05 21:06:07 +02:00
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
Because 'git cherry' compares the changeset rather than the commit id
|
|
|
|
(sha1), you can use 'git cherry' to find out if a commit you made locally
|
2006-05-05 21:06:07 +02:00
|
|
|
has been applied <upstream> under a different commit id. For example,
|
|
|
|
this will happen if you're feeding patches <upstream> via email rather
|
|
|
|
than pushing or pulling commits directly.
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-08-27 03:18:48 +02:00
|
|
|
-v::
|
|
|
|
Verbose.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-08-27 03:18:48 +02:00
|
|
|
<upstream>::
|
|
|
|
Upstream branch to compare against.
|
2008-12-29 18:45:20 +01:00
|
|
|
Defaults to the first tracked remote branch, if available.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-08-27 03:18:48 +02:00
|
|
|
<head>::
|
|
|
|
Working branch; defaults to HEAD.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2007-06-11 14:56:56 +02:00
|
|
|
<limit>::
|
|
|
|
Do not report commits up to (and including) limit.
|
|
|
|
|
2008-05-29 02:03:46 +02:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkgit:git-patch-id[1]
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|