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
When a recipe uses a `git+...` url, and has a `version` specified, only do a shallow git clone.
This saves disk space and bandwidth.
Tested with a custom qt5 recipe.
Without this patch, the git clone on disk was 8.5 GB, now it is 5.0 GB.
```
class Qt5Recipe(BootstrapNDKRecipe):
url = 'git+https://code.qt.io/qt/qt5.git'
#version = '5.15.2'
version = '9b43a43ee96198674060c6b9591e515e2d27c28f'
```
0 commit comments