How to clone a sub-directory only of a Git respository
mkdir <repo> cd <repo> git init git remote add -f origin <url> git config core.sparseCheckout true echo "some/dir/" >> .git/info/sparse-checkout echo "another/sub/tree" >> .git/info/sparse-checkout git pull origin master |
-Reference
https://stackoverflow.com/questions/600079/how-do-i-clone-a-subdirectory-only-of-a-git-repository
'Programming > Git' 카테고리의 다른 글
Git: “Not currently on any branch.” (0) | 2019.02.20 |
---|---|
[GitHub] git push 깃허브 사용자 유저, 비밀번호 기억하기 (0) | 2017.09.07 |
[Markdown] 깃허브 위키 마크다운 문법 표 만들기 (1) | 2017.08.14 |
[Markdown] 깃허브 위키에 url 사진 표시하기 (0) | 2017.08.09 |
[Markdown] TOC (Table Of Content) - 깃허브 위키 목차 만들기 (0) | 2017.07.25 |