Answers for "git clone depth 0"

9

git clone repo with name

git clone https://github.com/foo/repo_name.git new_directory_name
Posted by: Guest on April-07-2020
1

shallow clone

How to Execute Git Shallow Clone
Provide an argument of -- depth 1 to the git clone command to copy only the latest revision of a repo:

git clone -–depth [depth] [remote-url]
 

You can also use git shallow clone to access a single branch:

git clone [remote-url] --branch [name] --single-branch [folder]
 

With git shallow clone you get fewer files. And as a result, they clone faster. Builds and feedback can be delivered quicker.
Posted by: Guest on November-05-2020

Browse Popular Code Answers by Language