본문 바로가기

리눅스

[git 명령어] git clone 디렉토리 지정(변경)하기

반응형

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

 

 

728x90
반응형