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
ただし、グローバル エイリアスが必要な場合 (単に入力し、入力ngしない場合hg ng)、それを .bashrc (または、既に存在する場合は .bash_aliases) に配置する必要があります。
ng
alias ng="hg push -f"