开发者

Pretty hg branch graphs

With hg, how I can see in command line the branches graphs? Similar to

git log 开发者_JAVA技巧--pretty=oneline --graph


For Mercurial 2.3 and up, use

hg log -G

For older Mercurial, you need to first install the the graphlog extension which will enable the above command. The graphlog extension also adds an alias

hg glog

in all versions of Mercurial.


You can create custom templates and aliases in hg. For instance, create an alias in your .hgrc as follows:

[alias]
lg = log --template "{label('custom.rev', rev)}\t{label('custom.phase',phase)}\t{label('custom.tag',tags)}\t{desc|firstline} {label('custom.age', date|age)} {label('custom.user', author|user)}\n"

[color]
custom.rev = yellow
custom.phase = bold
custom.user = cyan
custom.age = bold
custom.tag = bold yellow

and invoke it with

hg lg -G

The output will be like this.

Pretty hg branch graphs

Jordi has some awesome aliases in his blog

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜