프로젝트 구조가 하나의 repository에 해당 프로젝트에 대한 모든 코드를 다 넣어두고 개발 스택별로 폴더를 나누어 구분하는 구조로 되어있어서 특정 폴더만 clone 하기 위해 사용한 방법을 포스팅하려고 합니다.
mkdir test
cd test
git init
git remote add origin [git repository 주소]
git config core.sparsecheckout true
echo '폴더 경로/*' >> .git/info/sparse-checkout
# echo 'test/*' >> .git/info/sparse-checkout
git pull origin master