We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fea28a commit 1080744Copy full SHA for 1080744
cmd/utils.go
@@ -105,8 +105,9 @@ func promptList() {
105
func commit(message string) (err error) {
106
cmdGit := exec.Command("git", "commit", "-m", message)
107
lastCommit := "Last commit: " + message
108
- _, err = cmdGit.Output()
+ output, err := cmdGit.Output()
109
checkErr(err)
110
+ fmt.Println(string(output))
111
fmt.Println(Gray(lastCommit))
112
fmt.Println(Green("Done"))
113
0 commit comments