@@ -269,7 +269,8 @@ def action_fork(self, cassette_name, local_namespace, remote_namespace, reposito
269
269
('git remote add upstream {}' .format (remote_slug ), b'' , b'' , 0 ),
270
270
('git remote add all {}' .format (local_slug ), b'' , b'' , 0 ),
271
271
('git remote add {} {}' .format (self .service .name , local_slug ), b'' , b'' , 0 ),
272
- ('git pull -v {} master' .format (self .service .name ), b'' , '\n ' .join ([
272
+ ('git version' , b'git version 2.8.0' , b'' , 0 ),
273
+ ('git pull -v --progress {} master' .format (self .service .name ), b'' , '\n ' .join ([
273
274
'POST git-upload-pack (140 bytes)' ,
274
275
'remote: Counting objects: 8318, done.' ,
275
276
'remote: Compressing objects: 100% (3/3), done.' ,
@@ -295,7 +296,8 @@ def action_fork__no_clone(self, cassette_name, local_namespace, remote_namespace
295
296
('git remote add upstream {}' .format (remote_slug ), b'' , b'' , 0 ),
296
297
('git remote add all {}' .format (local_slug ), b'' , b'' , 0 ),
297
298
('git remote add {} {}' .format (self .service .name , local_slug ), b'' , b'' , 0 ),
298
- ('git pull -v {} master' .format (self .service .name ), b'' , '\n ' .join ([
299
+ ('git version' , b'git version 2.8.0' , b'' , 0 ),
300
+ ('git pull -v --progress {} master' .format (self .service .name ), b'' , '\n ' .join ([
299
301
'POST git-upload-pack (140 bytes)' ,
300
302
'remote: Counting objects: 8318, done.' ,
301
303
'remote: Compressing objects: 100% (3/3), done.' ,
@@ -318,7 +320,8 @@ def action_clone(self, cassette_name, namespace, repository):
318
320
self .set_mock_popen_commands ([
319
321
('git remote add all {}' .format (local_slug ), b'' , b'' , 0 ),
320
322
('git remote add {} {}' .format (self .service .name , local_slug ), b'' , b'' , 0 ),
321
- ('git pull -v {} master' .format (self .service .name ), b'' , '\n ' .join ([
323
+ ('git version' , b'git version 2.8.0' , b'' , 0 ),
324
+ ('git pull -v --progress {} master' .format (self .service .name ), b'' , '\n ' .join ([
322
325
'POST git-upload-pack (140 bytes)' ,
323
326
'remote: Counting objects: 8318, done.' ,
324
327
'remote: Compressing objects: 100% (3/3), done.' ,
0 commit comments