From: Junio C Hamano Date: Tue, 28 Mar 2006 07:58:34 +0000 (-0800) Subject: rev-list --boundary X-Git-Tag: v1.3.0-rc2~32 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=384e99a4a99820c34fe3600b2aad3f0185dd43db;hp=384e99a4a99820c34fe3600b2aad3f0185dd43db;p=git.git rev-list --boundary With the new --boundary flag, the output from rev-list includes the UNINTERESING commits at the boundary, which are usually not shown. Their object names are prefixed with '-'. For example, with this graph: C side / A---B---D master You would get something like this: $ git rev-list --boundary --header --parents side..master D B tree D^{tree} parent B ... log message for commit D here ... \0-B A tree B^{tree} parent A ... log message for commit B here ... \0 Signed-off-by: Junio C Hamano ---