git 특정 폴더만 받기 Clone 하기
소스를 clone할 폴더 생성 생성한 폴더 안으로 이동 후 git init git config core.sparseCheckout true git remote add -f origin // -f 옵션은 --fetch와 동일한 옵션으로 remote를 연결함과 동시에 fetch를 통해 파일을 가져온다. echo "src/main/webapp/resources" >> .git/info/sparse-checkout git pull origin master
2022년 06월 21일