Why is the glog command gone for mercurial at ubuntu?

3

1

I am using ubuntu 9.10 and installed mercurial (hg) via apt-get. If I now call

hg glog

it says: unknown command 'glog'. I am using version 1.3.1 of hg.

How can I fix this?

Karussell

Posted 2010-06-24T13:53:52.583

Reputation: 248

Answers

1

Since Mercurial 2.3 this - now bundled - extension is just an alias for the -G switch to hg log.

So hg log -G has the same effect these days, without having to enable it in the hgrc file.

0xC0000022L

Posted 2010-06-24T13:53:52.583

Reputation: 5 091

4

Ok I had to enable it in the ~/.hgrc file:

[extensions]
hgext.graphlog = 

See also https://www.mercurial-scm.org/wiki/GraphlogExtension

Karussell

Posted 2010-06-24T13:53:52.583

Reputation: 248