= Monotone Best Practices =

The purpose of this page is to create a set of best practices for the use of pidgin monotone.  When deemed worthy, it will be merged into UsingPidginMonotone.

== Speedups ==
{{{
mtn refresh_inodeprints
}}}
The above command will create a inode cache of your current workspace.  This will dramatically reduce the runtime of mtn status, commit, etc.  Technically this method is less safe then the default behavior, as under certain circumstances, some changes may not be noticed.  Please read the [http://monotone.ca/docs/Inodeprints.html official docs] for more information.

== Pulling New Branches ==
If you did not do an initial pull with {{{mtn pull pidgin.im im.pidgin.*}}} it is possible that you will not automagically pull new branches.  If you have noticed a lack of branches in {{{mtn ls branches}}} you can remedy this one of two ways.

From a working copy:
{{{
mtn pull --set-default pidgin.im "im.pidgin.*"
}}}

From anywhere:
{{{
mtn -d <path to your pidgin database> pull --set-default pidgin.im "im.pidgin.*"
}}}