Re: [git-users] no colors for graph

2022-11-19 Thread Konstantin Khomoutov
On Sat, Nov 19, 2022 at 02:14:36PM +0100, Uwe Brauer wrote: [...] >> git log --color=always ... > > That gives a strange result, namely > ESC[33mcommit 9dc21b3902a819796d1ba3bc7654733ab00e6e75 (feature)ESC[mESC[33m > (ESC[mESC[36mHEADESC[mESC[33m -> ESC[mESC[32mfeature > ESC[mESC[33m)ESC[m T

Re: [git-users] no colors for graph

2022-11-19 Thread Uwe Brauer
>>> "KK" == Konstantin Khomoutov writes: > On Sat, Nov 19, 2022 at 08:20:41AM +0100, Uwe Brauer wrote: >> Being a mercurial user I want the git graph to look as close as possible to >> mercurials, >> >> The following command/alias does this, but does not display colors, although >> I used the

Re: [git-users] no colors for graph

2022-11-19 Thread Konstantin Khomoutov
On Sat, Nov 19, 2022 at 04:40:43PM +0400, Konstantin Khomoutov wrote: [...] > > git log --graph --all --decorate --pretty=short | git name-rev --stdin | > > more [...] > - So, since a command pipelines as implemented in Unix and Windows shells >have no way to propagate some information "back

Re: [git-users] no colors for graph

2022-11-19 Thread Konstantin Khomoutov
On Sat, Nov 19, 2022 at 08:20:41AM +0100, Uwe Brauer wrote: > Being a mercurial user I want the git graph to look as close as possible to > mercurials, > > The following command/alias does this, but does not display colors, although > I used the decorate option > > git log --graph --all --dec

[git-users] no colors for graph

2022-11-18 Thread Uwe Brauer
Hi Being a mercurial user I want the git graph to look as close as possible to mercurials, The following command/alias does this, but does not display colors, although I used the decorate option git log --graph --all --decorate --pretty=short | git name-rev --stdin | more Any ideas? Thank