I\'m trying to shrink a big repository to reduce server load. I\'m using the command
git clone --depth 1000 url
But when the clone is finis
Shallow clones default to only getting a single branch. If you want to get all branches, pass --no-single-branch to git clone.
--no-single-branch
git clone