diff --git a/git_cache.py b/git_cache.py index 4224bb54db..ab3d08926c 100755 --- a/git_cache.py +++ b/git_cache.py @@ -592,12 +592,6 @@ class Mirror(object): return # Run Garbage Collect to compress packfile. - # It appears core.deltaBaseCacheLimit restricts the file size of the pack - # files produced, while we want 1 big pack file for efficiency. - try: - self.RunGit(['config', '--unset-all', 'core.deltaBaseCacheLimit']) - except subprocess.CalledProcessError: - pass # Nothing to unset is fine. gc_args = ['gc', '--prune=all'] if gc_aggressive: gc_args.append('--aggressive')