diff --git a/central/git.py b/central/git.py index 792f166..9320873 100644 --- a/central/git.py +++ b/central/git.py @@ -49,7 +49,7 @@ def clone(self, origin): self.git_cli("clone", "--bare", "--filter=tree:0", origin, ".") def fetch(self): - self.git_cli("fetch", "--prune", "--tags", "origin", "*:*") + self.git_cli("fetch", "--all", "--tags", "--prune") self.git_cli("update-ref", "HEAD", "FETCH_HEAD") def commit_log(self, hash, format):