Merge pull request #143 from smiley/patch-1

Remove deprecated (and removed) "git lfs fetch" flags
This commit is contained in:
Jose Diaz-Gonzalez
2020-02-03 11:41:10 -05:00
committed by GitHub

View File

@@ -1036,7 +1036,7 @@ def fetch_repository(name,
logging_subprocess(git_command, None, cwd=local_dir)
if lfs_clone:
git_command = ['git', 'lfs', 'fetch', '--all', '--force', '--tags', '--prune']
git_command = ['git', 'lfs', 'fetch', '--all', '--prune']
else:
git_command = ['git', 'fetch', '--all', '--force', '--tags', '--prune']
logging_subprocess(git_command, None, cwd=local_dir)