On 2009-02-13, Johannes Schindelin <Johannes.Schindelin@xxxxxx> wrote: > On Fri, 13 Feb 2009, Sitaram Chamarty wrote: >> I was wondering if there was any way, when using 'git log >> --graph --pretty=oneline' to get a different marker (perhaps >> an underscore) for a root commit. > Is it not enough that the line ends? That is a pretty obvious visual > marker for me that this is a root commit. But I see that you are _asking_ > for the lines not to be shown, by using --pretty=oneline. Yes; I'm short on vertical space here. > You might be interested in this instead: > > git log --graph --pretty=format:'%h %s%n' It doubles the height requirement, but you gave me an idea: git log --graph --pretty=tformat:'%h <%p> %s' --all | perl -pe '$_.="----\n" if /<>/; s/<.*?> //' Thanks for pointing me in the right direction. Regards, Sitaram -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html