Skip to content

Commit

Permalink
Merge pull request ohmyzsh#811 from markdrago/remove_verbose_mercuria…
Browse files Browse the repository at this point in the history
…l_flags

remove the -v flag from a few mercurial aliases
  • Loading branch information
robbyrussell committed Jan 22, 2012
2 parents 634ce4e + 804c18c commit 3574f30
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugins/mercurial/mercurial.plugin.zsh
@@ -1,14 +1,14 @@

# Mercurial
alias hgc='hg commit -v'
alias hgb='hg branch -v'
alias hgc='hg commit'
alias hgb='hg branch'
alias hgba='hg branches'
alias hgco='hg checkout'
alias hgd='hg diff'
alias hged='hg diffmerge'
# pull and update
alias hgl='hg pull -u -v'
alias hgp='hg push -v'
alias hgs='hg status -v'
alias hgl='hg pull -u'
alias hgp='hg push'
alias hgs='hg status'
# this is the 'git commit --amend' equivalent
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'

0 comments on commit 3574f30

Please sign in to comment.