Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
水银
我想编辑 ~/.hgrc 文件来设置 ng 命令,如下所示:
hg push -f
怎么做?
您在 .hgrc 上指定的别名是 mercurial 的内部别名。
例如:
[alias] ng = push -f
您现在可以键入hg ng,这是一个“内部”别名。
hg ng
但是,如果你想要一个全局别名(键入 justng和 not hg ng),那么你必须把它放在 .bashrc (或者 .bash_aliases 如果已经存在)
ng
alias ng="hg push -f"