I want to create an alias so that when I run:
hg pushbranch <<SOME_BRANCH>>
it aliases to:
hg push -b <<SOME_BRANCH>>
Where SOME_BRANCH
is the name of a branch I wish to push. I can create an alias in my .hgrc
, but don't know how I could supply an argument to the alias.