Merge branch 'revert--filter-blob-none' into 'master'

Revert "Clone without blobs to save space"

Closes #1177

See merge request fdroid/fdroidserver!1409
This commit is contained in:
Jochen Sprickerhof 2023-11-20 09:23:21 +00:00
commit cbfb12f917
1 changed files with 1 additions and 1 deletions

View File

@ -1260,7 +1260,7 @@ class vcs_git(vcs):
def gotorevisionx(self, rev):
if not os.path.exists(self.local):
# Brand new checkout
p = self.git(['clone', '--filter=blob:none', '--', self.remote, str(self.local)])
p = self.git(['clone', '--', self.remote, str(self.local)])
if p.returncode != 0:
self.clone_failed = True
raise VCSException("Git clone failed", p.output)