Started adding mercurial aliases.
authorRobert R Evans <robert@codewranglers.org>
Fri, 15 Oct 2010 15:11:54 +0000 (08:11 -0700)
committerRobert R Evans <robert@codewranglers.org>
Fri, 15 Oct 2010 15:11:54 +0000 (08:11 -0700)
aliases/hg.aliases.bash [new file with mode: 0644]

diff --git a/aliases/hg.aliases.bash b/aliases/hg.aliases.bash
new file mode 100644 (file)
index 0000000..64f20f5
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+alias hs='hg status'
+alias hsum='hg summary'
+alias hcm='hg commit -m'
+
+function hg-help() {
+  echo "Mercurial Alias Help"
+  echo
+  echo "  hs    = hg status"
+  echo "  hsum  = hg summary"
+  echo "  hcm   = hg commit -m"
+  echo
+}
\ No newline at end of file