Follow-up of this so-question: if I have a shallow clone, how to fetch all older commits to make it a full clone?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You can run git fetch --depth=1000000 (assuming the repository has less than one million commits).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.