Answers for "clone from specific folder on repo"

1

how to clone only sub directory git

Cloning only a subdirectory is not possible in Git. 
The network protocol doesn't support it, 
the storage format doesn't support it.
Every single answer to this question always clones the whole repository.
Posted by: Guest on January-05-2022
0

git clone to existing folder

git init
git remote add origin [my-repo]
git fetch
git checkout origin/master -ft
Posted by: Guest on October-19-2021

Code answers related to "clone from specific folder on repo"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language