Skip to content

Commit dc46be1

Browse files
authored
Merge pull request #443 from estroz/fix-363
commands/operator-sdk/cmd: quiet initial git commit
2 parents 0f60da8 + 4fea21b commit dc46be1

File tree

1 file changed

+1
-1
lines changed
  • commands/operator-sdk/cmd

1 file changed

+1
-1
lines changed

commands/operator-sdk/cmd/new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,6 @@ func initGit() {
181181
fmt.Fprintln(os.Stdout, "Run git init ...")
182182
execCmd(os.Stdout, "git", "init")
183183
execCmd(os.Stdout, "git", "add", "--all")
184-
execCmd(nil, "git", "commit", "-m", "INITIAL COMMIT")
184+
execCmd(os.Stdout, "git", "commit", "-q", "-m", "INITIAL COMMIT")
185185
fmt.Fprintln(os.Stdout, "Run git init done")
186186
}

0 commit comments

Comments
 (0)