Created
July 28, 2011 19:00
-
-
Save joshdvir/1112265 to your computer and use it in GitHub Desktop.
Mercurial (hg) bash aliases for .bash_profile and .bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# mercurial (hg) | |
alias hl='hg pull' | |
alias hp='hg push' | |
alias hd='hg diff' | |
alias hc='hg commit' | |
alias hco='hg checkout' | |
alias hb='hg branch' | |
alias hs='hg status' | |
alias ha='hg add .' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment