How to install forest plugin for Mercurial on Mac?

David Herron davidh at 7gen.com
Sat Feb 7 23:08:53 PST 2009


ying lcs wrote:
> Hi,
>
> I try to follow these steps in setting up Mercurial on Mac:
> http://openjdk.java.net/guide/repositories.html#installConfig
>
> But can you please tell me where I can find the forrest plugin for
> Mercurial? and how to install it on Mac?
>
> I don't know how to get it from here and then install it:
> http://hg.akoha.org/hgforest/
>
> Thank you.
>   
I clone the forest extension repository and then set up my hgrc as follows:-



david-herrons-mac-mini:wwwatts.net david$ cat ~/.hgrc
[ui]
username = David Herron

[extensions]
# http://www.selenic.com/mercurial/wiki/index.cgi/MqExtension
hgext.mq=
# http://www.selenic.com/mercurial/wiki/index.cgi/FetchExtension
hgext.fetch=
# http://www.selenic.com/mercurial/wiki/index.cgi/PurgeExtension
hgext.purge=
# NOT COMPATIBLE WITH 1.0.2
# http://www.selenic.com/mercurial/wiki/index.cgi/RebaseExtension
# hgext.rebase=
# http://www.selenic.com/mercurial/wiki/index.cgi/TransplantExtension
hgext.transplant=
# http://www.selenic.com/mercurial/wiki/index.cgi/ForestExtension
forest=/Users/david/.local/hgforest/forest.py
# http://www.selenic.com/mercurial/wiki/index.cgi/InfoExtension
info=/Users/david/.local/info.py

[forest]
# will nested repositories directly under a .hg directory be skipped 
(0|no|false) or not (1|yes|true)?.
# The default value is 0. (don't skip them)
walkhg = no





More information about the jdk7-dev mailing list