일반적으로 이해하기 쉽게 이름을 바꾸는 방법은 다음과 같습니다.
$ git clone <remote URL.git>
$ mv remotedir nameIwant
이 작업을 수행하는 더 좋은 방법이 있는지 궁금합니다.
그 이유는 가끔 포크를 시도해보고 메인 저장소를 유지하고 싶기 때문입니다. 독창적이기 때문에 포크의 이름도 원산지에 따라 변경되었습니다. 저장소의 ~/.git/config에서 원격 경로를 얻을 수 있다는 것을 알고 있지만 이것이 기억하기 더 쉽습니다.
더 좋은 방법이 있나요?
온라인으로 검색했지만 도움이 되는 내용을 찾을 수 없었습니다.
답변1
명령 뒤에 원하는 대상 디렉터리 이름을 지정해 보십시오. 예를 들면 다음과 같습니다.
git clone <remote URL.git> nameIwant
에서 man git-clone
:
<directory>
The name of a new directory to clone into. The "humanish" part of
the source repository is used if no directory is explicitly given
(repo for /path/to/repo.git and foo for host.xz:foo/.git). Cloning
into an existing directory is only allowed if the directory is
empty.