Skip to content

Commit

Permalink
git: Fetch all remotes and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
OatmealDome committed Jun 19, 2024
1 parent ff0866d commit d24b076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion central/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d24b076

Please # to comment.