Answers for "git shallow clone"

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
0

git checkout fast

git clone [remote-url] --branch [name] --single-branch [folder]
Posted by: Guest on September-30-2020

Browse Popular Code Answers by Language