标签: mercurial
水银
我想编辑〜/ .hgrc文件来设置这样的命令:
hg push -f
怎么办?
答案 0 :(得分:0)
您在.hgrc上指定的别名是mercurial的内部。
例如:
[alias] ng = push -f
您现在可以输入hg ng,这是一个“内部”别名。
hg ng
但是,如果你想要一个全局别名(只键入ng而不是hg ng),那么你必须把它放在.bashrc中(或.bash_aliases,如果已经存在)
ng
alias ng="hg push -f"