diff --git a/git_superproject.py b/git_superproject.py index 157a1fbb..e2045cfd 100644 --- a/git_superproject.py +++ b/git_superproject.py @@ -63,7 +63,7 @@ class Superproject(object): True if 'git clone ' is successful, or False. """ os.mkdir(self._superproject_path) - cmd = ['clone', url, '--depth', '1'] + cmd = ['clone', url, '--filter', 'blob:none'] if branch: cmd += ['--branch', branch] p = GitCommand(None,