summaryrefslogtreecommitdiff
path: root/development
diff options
context:
space:
mode:
authoragx <agx@web>2009-04-03 17:48:03 +0200
committerWiki User <wikwik@wiki.sigxcpu.org>2009-04-03 17:48:03 +0200
commit8786e15976195633ae1c9b857d4de97f0c963839 (patch)
tree048d03e483f1cf1eef15f729a281038cf7c00d5b /development
parent6f31b820361c019a5eb368a4cc2a148f8abfa8b3 (diff)
rename hg_cheatsheet.mdwn to development/hg_cheatsheet.mdwn
Diffstat (limited to 'development')
-rw-r--r--development/hg_cheatsheet.mdwn12
1 files changed, 12 insertions, 0 deletions
diff --git a/development/hg_cheatsheet.mdwn b/development/hg_cheatsheet.mdwn
new file mode 100644
index 0000000..6063fb4
--- /dev/null
+++ b/development/hg_cheatsheet.mdwn
@@ -0,0 +1,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*.