richardmaw-codethink pushed to branch richardmaw/wip-oldgit-shallow-parents-exclude-fix at BuildStream / buildstream
Commits:
-
58e4e0e2
by Richard Maw at 2019-01-15T16:05:02Z
1 changed file:
Changes:
... | ... | @@ -112,7 +112,8 @@ class GitMirror(SourceFetcher): |
112 | 112 |
else:
|
113 | 113 |
remote_name = "origin"
|
114 | 114 |
|
115 |
- self.source.call([self.source.host_git, 'fetch', remote_name, '--prune', '--force', '--tags'],
|
|
115 |
+ #self.source.call([self.source.host_git, 'fetch', remote_name, '--prune', '--force', '--tags'],
|
|
116 |
+ self.source.call([self.source.host_git, 'fetch', remote_name, '--prune'],
|
|
116 | 117 |
fail="Failed to fetch from remote git repository: {}".format(url),
|
117 | 118 |
fail_temporarily=True,
|
118 | 119 |
cwd=self.mirror)
|