-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use shallow clones by default #117
Conversation
Deep clones take up so much unnecessary space, and are unused 99% of the time. Shallow cloning in git is pretty good these days. This doesn't touch pre-existing clones
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't familiar with this, but it seems like a good idea to me. I don't think students or instructors ever make use of the full history or other branches. If any do, it is for debugging in which case they can do it manually.
I think this makes sense for nbgitpuller to do: LGTM. |
b2d3cec
to
177a468
Compare
I fixed all the issues in the current PRs tests, but additional tests were added since this PR was created that is failing as well. I'll see if I can fix those in a separate PR. |
Deep clones take up so much unnecessary space, and are unused
99% of the time. Shallow cloning in git is pretty good these
days. This doesn't touch pre-existing clones