commands: force --ff-only when updating clones

This commit is contained in:
Frédéric Péters 2022-07-11 16:16:07 +02:00
parent b2d7337908
commit 4cb8cb5b8e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class Command(BaseCommand):
cwd = checkouts_directory
else:
# pull
cmd = ['git', 'pull']
cmd = ['git', 'pull', '--ff-only']
cwd = checkout_dir
if self.verbose: