mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 14:30:30 +03:00
Merge branch 'git_prune' into 'master'
git prune branches in case of failure See merge request fdroid/fdroidserver!1026
This commit is contained in:
commit
e036f31613
1 changed files with 3 additions and 0 deletions
|
|
@ -1167,6 +1167,9 @@ class vcs_git(vcs):
|
|||
p = self.git(['fetch', 'origin'], cwd=self.local)
|
||||
if p.returncode != 0:
|
||||
raise VCSException(_("Git fetch failed"), p.output)
|
||||
p = self.git(['remote', 'prune', 'origin'], output=False, cwd=self.local)
|
||||
if p.returncode != 0:
|
||||
raise VCSException(_("Git prune failed"), p.output)
|
||||
p = self.git(['fetch', '--prune', '--tags', '--force', 'origin'], output=False, cwd=self.local)
|
||||
if p.returncode != 0:
|
||||
raise VCSException(_("Git fetch failed"), p.output)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue