diff --git a/Scalar.Common/Git/GitProcess.cs b/Scalar.Common/Git/GitProcess.cs index b19c38d1ba..ddc3baf4ca 100644 --- a/Scalar.Common/Git/GitProcess.cs +++ b/Scalar.Common/Git/GitProcess.cs @@ -431,7 +431,7 @@ public Result BackgroundFetch(string remote) // By using this refspec, we do not create local refs, but instead store them in the "hidden" // namespace. These refs are never visible to the user (unless they open the .git/refs dir) // but still allow us to run reachability questions like updating the commit-graph. - return this.InvokeGitInWorkingDirectoryRoot($"fetch {remote} --no-update-remote-refs +refs/heads/*:refs/{ScalarConstants.DotGit.Refs.Hidden.Name}/{remote}/*", fetchMissingObjects: true); + return this.InvokeGitInWorkingDirectoryRoot($"fetch {remote} --quiet --no-update-remote-refs +refs/heads/*:refs/{ScalarConstants.DotGit.Refs.Hidden.Name}/{remote}/*", fetchMissingObjects: true); } public string[] GetRemotes()