当一个项目开始时
mkdir proj
cd proj
hg init
[create some files]
hg add file.txt
hg commit
hg push ssh://me@somewhere.somehost.com/proj
现在什么时候hg path
发布,什么都不会显示。我们如何实际更改存储库,使其就像是从 克隆的一样me@somewhere.somehost.com/proj
?是否只是通过编辑 .hg/hgrc 并添加
[paths]
default = ssh://me@somewhere.somehost.com/proj
因为这感觉太低级了(通过编辑文本文件)