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 f714763 commit 7a951f1Copy full SHA for 7a951f1
main.go
@@ -40,7 +40,7 @@ func mainAction(c *cli.Context) error {
40
fmt.Println()
41
stagedFilesLen := len(stagedFiles)
42
if stagedFilesLen == 0 {
43
- fmt.Println("No staged files.")
+ fmt.Println(" No staged files.")
44
}
45
for i, file := range stagedFiles {
46
fmt.Printf(" [%d]\t%v\t%v\n", i+1, file.Status, file.Path)
@@ -51,7 +51,7 @@ func mainAction(c *cli.Context) error {
51
52
unstagedFilesLen := len(unstagedFiles)
53
if unstagedFilesLen == 0 {
54
- fmt.Println("No unstaged files.")
+ fmt.Println(" No unstaged files.")
55
56
for i, file := range unstagedFiles {
57
fmt.Printf(" [%d]\t%v\t%v\n", i+1+stagedFilesLen, file.Status, file.Path)
0 commit comments