You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
sorenlouv
changed the title
Use shallow clone to improve performance of huge repos
Use shallow clone to improve performance when cloning huge repos
Jun 4, 2020
Another option would be using the existing repository. E.g. wherever you're making a copy first do git clone /home/user/folder.. and then you can change the origin. This way it's much faster to clone.
Cloning a big repository like Kibana can be very slow and take several minutes. To improve this it might make sense to shallow clone the repository
This will only fetch the most recent commit from the default branch and is thus much faster than cloning the entire history for all branches.
The text was updated successfully, but these errors were encountered: