remove the -v flag from a few mercurial aliases
Robby Russell authored on 22/01/2012 at 21:01:54... | ... |
@@ -1,14 +1,14 @@ |
1 | 1 |
|
2 | 2 |
# Mercurial |
3 |
-alias hgc='hg commit -v' |
|
4 |
-alias hgb='hg branch -v' |
|
3 |
+alias hgc='hg commit' |
|
4 |
+alias hgb='hg branch' |
|
5 | 5 |
alias hgba='hg branches' |
6 | 6 |
alias hgco='hg checkout' |
7 | 7 |
alias hgd='hg diff' |
8 | 8 |
alias hged='hg diffmerge' |
9 | 9 |
# pull and update |
10 |
-alias hgl='hg pull -u -v' |
|
11 |
-alias hgp='hg push -v' |
|
12 |
-alias hgs='hg status -v' |
|
10 |
+alias hgl='hg pull -u' |
|
11 |
+alias hgp='hg push' |
|
12 |
+alias hgs='hg status' |
|
13 | 13 |
# this is the 'git commit --amend' equivalent |
14 | 14 |
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip' |