summaryrefslogtreecommitdiff
path: root/internal/sync/git_operations.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/sync/git_operations.go')
-rw-r--r--internal/sync/git_operations.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/sync/git_operations.go b/internal/sync/git_operations.go
index 3bd6618..efa27f5 100644
--- a/internal/sync/git_operations.go
+++ b/internal/sync/git_operations.go
@@ -127,7 +127,6 @@ func getRemotesList() (map[string]bool, error) {
// fetchRemote fetches from a single remote with error handling
func fetchRemote(remote string) error {
- fmt.Printf("Fetching %s\n", remote)
cmd := exec.Command("git", "fetch", remote, "--prune", "--tags")
output, err := cmd.CombinedOutput()