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