| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,14 @@ |
| 0 |
+ |
|
| 1 |
+# Mercurial |
|
| 2 |
+alias hgc='hg commit -v' |
|
| 3 |
+alias hgb='hg branch -v' |
|
| 4 |
+alias hgba='hg branches' |
|
| 5 |
+alias hgco='hg checkout' |
|
| 6 |
+alias hgd='hg diff' |
|
| 7 |
+alias hged='hg diffmerge' |
|
| 8 |
+# pull and update |
|
| 9 |
+alias hgl='hg pull -u -v' |
|
| 10 |
+alias hgp='hg push -v' |
|
| 11 |
+alias hgs='hg status -v' |
|
| 12 |
+# this is the 'git commit --amend' equivalent |
|
| 13 |
+alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip' |