Answers for "how to clone one folder from github"

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
2

github clone to local folder

cd folder/to/clone-into/
git clone https://github.com/your-repo/project-name.git
Posted by: Guest on March-30-2020

Code answers related to "how to clone one folder from github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language