views:

64

answers:

1

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

git log --pretty=oneline --graph
+4  A: 

use the graphlog extension

pc1500
Then you can just type, `hg glog` to get a similar output.
Santa