1git-cherry(1) 2============= 3 4NAME 5---- 6git-cherry - Find commits not merged upstream. 7 8SYNOPSIS 9-------- 10'git-cherry' [-v] <upstream> [<head>] 11 12DESCRIPTION 13----------- 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"). 19 20OPTIONS 21------- 22-v:: 23 Verbose. 24 25<upstream>:: 26 Upstream branch to compare against. 27 28<head>:: 29 Working branch; defaults to HEAD. 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--- 41Part of the gitlink:git[7] suite 42