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(); }