Marcus Leon
Marcus Leon

Reputation: 56699

Mercurial - how to enable/create visual graph

At our company we can access the remote repository web interface which has a 'graph' view where you can see an HTML page with a colored graph of the changeset structure/history. How can you enable this on your local clone?

We do use the Graph Log extension which is nice, but I prefer the HTML version with colors.

Upvotes: 2

Views: 963

Answers (1)

pconcepcion
pconcepcion

Reputation: 5641

For a fast check you can use hg serve command, that will deploy the mercurial built-in web server which includes a graph view of the repository it's useful and you can fine tune it with the .hgrc file, but for a permanent setup I will recommend to use a dedicated web server and a Mercurial CGI Server

More info on the hg wiki hg serve page and Mercurial CGI Server page

Upvotes: 5

Related Questions