From d24b07675775b61e556ecc80b8e4aefba6f03852 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Wed, 19 Jun 2024 11:15:41 -0400 Subject: [PATCH] git: Fetch all remotes and tags --- central/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):