Coding/Tip2017. 7. 22. 04:18

[ Using a sparse-checkout to clone speical folder only ]




mkdir paperjs

cd paperjs

git init


git remote add origin https://github.com/paperjs/paperjs.github.io.git

git config core.sparsecheckout true

echo "examples/*" >> .git/info/sparse-checkout

# Tip!!

# Windows power shell에서는 하기와 같이 하여야 함

# 그렇지 않으면

# error: Sparse checkout leaves no entry on the working directory 에러 메시지가 보임

# echo "examples/*"| out-file -encoding ascii .git/info/sparse-checkout

#

git pull --depth=2 origin master




* 참고 사이트 : https://stackoverflow.com/questions/23289006/on-windows-git-error-sparse-checkout-leaves-no-entry-on-the-working-directory

'Coding > Tip' 카테고리의 다른 글

사무직을 위한 Git 활용 법  (0) 2018.10.27
Windows 10에서 글자가 사라지는 현상  (0) 2017.06.15
[Android] ADB로 전화 걸기  (0) 2017.06.15
Posted by chobocho