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