Answers for "git how to make shallow clone with all branches"

1

git how to make shallow clone with all branches

git clone --depth 10 --no-single-branch https://github.com/django/django.git
Posted by: Guest on October-25-2021
0

how to clone repo with all branches

$ git branch -a
* master
  remotes/origin/HEAD
  remotes/origin/master
  remotes/origin/v1.0-stable
  remotes/origin/experimental
Posted by: Guest on May-29-2021
0

shallow clone specific branch

git clone --depth 1 https://path/to/repo/foo.git -b bar
Posted by: Guest on July-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language