답변:
.hg / hgrc 파일의 [paths] 섹션에 여러 항목을 추가 할 수도 있습니다.
[paths]
default = /repo_store/hg/project1
sandbox = /repo_store/hg/project1_experimental
그런 다음 수은 명령에서 별칭을 지정할 수 있습니다. 기본 저장소는 지정할 필요가 없지만 다른 저장소는 다음과 같아야합니다.
hg in # check incoming changes from default repo
hg in default # check incoming changes from default repo
hg in sandbox # check incoming changes from sandbox repo
hg pull sandbox # pull changes from sandbox repo
일반적으로 우리는
$ hg push https://bitbucket.org/username/com.example.app
그러나 $ hg push
저장소 URL없이 사용하려면 $ REPO / .hg / hgrc 파일에 URL을 추가해야합니다. 다음 내용을 추가합니다.
[paths]
default = https://bitbucket.org/username/com.example.app
질문과 관련하여 default
새 URL에 대한 경로를 설정하십시오 .