Closed Gcenx closed 3 years ago
https://github.com/PhoenicisOrg/phoenicis-winebuild/blob/90e39cdeb467a80d16bdc25e091881bdb08c93d1/builders/WineBuilder.py#L19-L21
This downloads the entire git history then checkout the desired release why not directly clone the desired release and use --depth 1
--depth 1
For example;
git clone -b wine-6.0 --depth 1 https://github.com/wine-mirror/wine.git
https://github.com/PhoenicisOrg/phoenicis-winebuild/blob/90e39cdeb467a80d16bdc25e091881bdb08c93d1/builders/WineBuilder.py#L19-L21
This downloads the entire git history then checkout the desired release why not directly clone the desired release and use
--depth 1
For example;