Autogenerated HTML docs for v1.1.4-g9264
[git.git] / git-cherry.txt
1 git-cherry(1)
2 =============
3
4 NAME
5 ----
6 git-cherry - Find commits not merged upstream.
7
8 SYNOPSIS
9 --------
10 'git-cherry' [-v] <upstream> [<head>]
11
12 DESCRIPTION
13 -----------
14 Each commit between the fork-point and <head> is examined, and compared against
15 the change each commit between the fork-point and <upstream> introduces.
16 Commits already included in upstream are prefixed with '-' (meaning "drop from
17 my local pull"), while commits missing from upstream are prefixed with '+'
18 (meaning "add to the updated upstream").
19
20 OPTIONS
21 -------
22 -v::
23         Verbose.
24
25 <upstream>::
26         Upstream branch to compare against.
27
28 <head>::
29         Working branch; defaults to HEAD.
30
31 Author
32 ------
33 Written by Junio C Hamano <junkio@cox.net>
34
35 Documentation
36 --------------
37 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
38
39 GIT
40 ---
41 Part of the gitlink:git[7] suite
42