diff --git a/commands/operator-sdk/cmd/new.go b/commands/operator-sdk/cmd/new.go index d36ed448337..fec8d56cfcc 100644 --- a/commands/operator-sdk/cmd/new.go +++ b/commands/operator-sdk/cmd/new.go @@ -181,6 +181,6 @@ func initGit() { fmt.Fprintln(os.Stdout, "Run git init ...") execCmd(os.Stdout, "git", "init") execCmd(os.Stdout, "git", "add", "--all") - execCmd(nil, "git", "commit", "-m", "INITIAL COMMIT") + execCmd(os.Stdout, "git", "commit", "-q", "-m", "INITIAL COMMIT") fmt.Fprintln(os.Stdout, "Run git init done") }