When a project is started with
mkdir proj
cd proj
hg init
[create some files]
hg add file.txt
hg commit
hg push ssh://[email protected]/proj
now when hg path
is issued, nothing will show. How do we actually change the repository so that it is as if it is cloned from [email protected]/proj
? Is it just by editing .hg/hgrc and adding
[paths]
default = ssh://[email protected]/proj
because that feels like too low level an operation to do (by editing a text file)