2005-08-23 10:49:47 +02:00
|
|
|
git-cherry(1)
|
|
|
|
=============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-08-27 03:18:48 +02:00
|
|
|
git-cherry - Find commits not merged upstream.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-08-27 03:18:48 +02:00
|
|
|
'git-cherry' [-v] <upstream> [<head>]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-08-27 03:18:48 +02:00
|
|
|
Each commit between the fork-point and <head> is examined, and compared against
|
|
|
|
the change each commit between the fork-point and <upstream> introduces.
|
|
|
|
Commits already included in upstream are prefixed with '-' (meaning "drop from
|
|
|
|
my local pull"), while commits missing from upstream are prefixed with '+'
|
|
|
|
(meaning "add to the updated upstream").
|
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.
|
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
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-23 10:49:47 +02:00
|
|
|
|