반응형
git clone 디렉토리 지정(변경)하기
git clone 명령어를 사용하여 저장소를 복제할 때, 복제된 디렉토리를 특정 위치로 지정하는 방법이 있습니다.
1. 디렉토리를 먼저 생성하고 그 안에서 git clone 실행
mkdir my_project
cd my_project
git clone <repository_url>
2. -o 또는 --origin 옵션 사용
git clone <repository_url> my_project
3. git clone 명령어에 경로를 직접 지정
구문) git clone <repository_url> <destination>
git cloen https://github.com/anti1346/project1.git project
$ git clone https://github.com/anti1346/project1.git project
Cloning into 'project'...
remote: Enumerating objects: 64, done.
remote: Counting objects: 100% (64/64), done.
remote: Compressing objects: 100% (42/42), done.
remote: Total 64 (delta 19), reused 38 (delta 9), pack-reused 0
Unpacking objects: 100% (64/64), done.
$ ls -l
합계 0
drwxr-xr-x 3 root root 90 1월 25 14:59 project
$ git clone https://github.com/anti1346/project1.git project 'project'로 복제 중... 원격: 개체 열거 중: 64, 완료. 원격: 개체 계산: 100%(64/64), 완료되었습니다. 원격: 개체 압축 중: 100%(42/42), 완료되었습니다. 원격: 총 64(델타 19), 재사용 38(델타 9), 팩 재사용 0 개체 압축 풀기: 100%(64/64), 완료되었습니다.
728x90
반응형
'리눅스' 카테고리의 다른 글
CentOS 8 Stream 설치(CentOS 8 스트림 설치) (0) | 2021.01.26 |
---|---|
tput 명령어 (0) | 2021.01.25 |
리눅스에서 패스워드를 한 줄로 변경하는 방법 (0) | 2021.01.25 |
sshpass 명령어 (0) | 2021.01.22 |
CentOS 7에서 lsyncd와 rsync를 사용하여 파일의 실시간 동기화를 설정하는 방법 (0) | 2021.01.22 |