2005-08-23 08:49:47 +00:00
|
|
|
git-cherry(1)
|
|
|
|
=============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 16:24:50 +00:00
|
|
|
git-cherry - Find commits not merged upstream
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 02:38:26 +00:00
|
|
|
[verse]
|
2009-01-01 21:56:29 +00:00
|
|
|
'git cherry' [-v] [<upstream> [<head> [<limit>]]]
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-05-05 19:06:07 +00: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>.
|
2013-09-24 22:33:36 +00:00
|
|
|
The diffs are compared after removing any whitespace and line numbers.
|
2006-05-05 19:06:07 +00:00
|
|
|
|
2006-10-25 06:14:30 +00: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 19:06:07 +00:00
|
|
|
in the <upstream> branch are prefixed with a minus (-) sign, and those
|
2006-10-26 21:32:41 +00: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 19:06:07 +00:00
|
|
|
|
2010-01-09 23:33:00 +00: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 19:06:07 +00: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 08:49:47 +00:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-08-27 01:18:48 +00:00
|
|
|
-v::
|
|
|
|
Verbose.
|
2005-08-23 08:49:47 +00:00
|
|
|
|
2005-08-27 01:18:48 +00:00
|
|
|
<upstream>::
|
|
|
|
Upstream branch to compare against.
|
2008-12-29 17:45:20 +00:00
|
|
|
Defaults to the first tracked remote branch, if available.
|
2005-08-23 08:49:47 +00:00
|
|
|
|
2005-08-27 01:18:48 +00:00
|
|
|
<head>::
|
|
|
|
Working branch; defaults to HEAD.
|
2005-08-23 08:49:47 +00:00
|
|
|
|
2007-06-11 12:56:56 +00:00
|
|
|
<limit>::
|
|
|
|
Do not report commits up to (and including) limit.
|
|
|
|
|
2008-05-29 00:03:46 +00:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkgit:git-patch-id[1]
|
|
|
|
|
2005-08-23 08:49:47 +00:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|