본문 바로가기
Git

git 특정 폴더만 받기 Clone 하기

by @hohoya33 2022년 06월 21일

소스를  clone할 폴더 생성

생성한 폴더 안으로 이동 후

 

git init 
git config core.sparseCheckout true

git remote add -f origin <Repository URL>
// -f 옵션은 --fetch와 동일한 옵션으로 remote를 연결함과 동시에 fetch를 통해 파일을 가져온다.

echo "src/main/webapp/resources" >> .git/info/sparse-checkout

git pull origin master

개의 댓글