[IT꿀팁/Git] Clone a subdirectory only of a Git repository (특정 파일만 클론) | (ft. sparse-checkout)

 프로젝트 관리를 위한 깃 레포지토리(git repository).

프로젝트를 이루는 수많은 파일 중에서 특정 파일만 클론(clone) 하는 방법에 대해 정리한다.



예시로 배우기

https://github.com/pytorch/pytorch



위의 깃 레포지토리에서 'docker' 파일만 여러분의 프로젝트 파일로 클론해보자.


# Make your project 
~$ mkdir <your-project-name> 
~$ cd <your-project-name> 
~$ git init 

# Set sparse-checkout 
~$ git sparse-checkout init   # (git 1.17~)에서 git config core.sparsecheckout true 명령과 동일 
~$ git sparse-checkout set "docker"    # .git/info/sparse-checkout 파일에 기록하기 
~$ git sparse-checkout list      # .git/info/sparse-checkout에 기록된 내용 출력 

# git pull 
~$ git remote add pytorch https://github.com/pytorch/pytorch  # git remote add <repository_name> <git_url>
~$ git pull pytorch master   # git pull <repository_name> <branch_name> 



Reference 




댓글

이 블로그의 인기 게시물

[DL for CV] Down-Sampling (Encoding)