summaryrefslogtreecommitdiff
path: root/development/hg_cheatsheet.mdwn
blob: 6063fb4abb9e1c70cddaafcc9b3d9d2b319b4f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Mercurial has all plugins disabled by default. So put this into *~/.hgrc*

    [extensions]
    hgext.mq =
    hgext.graphlog = 
    hgext.hgk = 

This enables the patch queue extensions as well as the *hg* *glog* and *hg* *view* commands. To set the correct submitter I have

    export HGUSER="$GIT_AUTHOR_NAME <$EMAIL>"

in *~/.bashrc*.