From 0091f0fd0805bf8efadf90ac3e695b8d61cf0128 Mon Sep 17 00:00:00 2001 From: Thomas Schneider Date: Fri, 27 Mar 2026 16:08:11 +0100 Subject: [PATCH] Fix: Corrected Git fetch command syntax in `GitService` --- src/Service/Git/GitService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/Git/GitService.php b/src/Service/Git/GitService.php index 2fb9b75..bca42c9 100644 --- a/src/Service/Git/GitService.php +++ b/src/Service/Git/GitService.php @@ -110,7 +110,7 @@ class GitService public function fetchRepo(string $dir, array $options = []): void { Process::fromShellCommandline( - command: 'git --all --tags', + command: 'git fetch --all --tags', cwd: $this->workingDir . DIRECTORY_SEPARATOR . $dir, )->mustRun(); }