docs: added usage for grouping to program

This commit is contained in:
Theis
2024-03-06 14:02:17 +01:00
parent c8c09e5f15
commit 4eada94fcf
+1 -1
View File
@@ -199,7 +199,7 @@ func NoInput(args []string, users map[string]user) {
os.Exit(1) os.Exit(1)
} }
// if calling binary with nothing or only string // if calling binary with nothing or only string
print("Usage: cocommit <commit message> <co-author1> [co-author2] [co-author3] || \ncocommit <commit message> <co-author1:email> [co-author2:email] [co-author3:email] || \ncocommit <commit message> all || \ncocommit <commit message> ^<co-author1> ^[co-author2] || \ncocommit users || \nMixes of both") print("Usage: cocommit <commit message> <co-author1> [co-author2] [co-author3] || \ncocommit <commit message> <co-author1:email> [co-author2:email] [co-author3:email] || \ncocommit <commit message> all || \ncocommit <commit message> ^<co-author1> ^[co-author2] || \ncocommit <commit message> <group> || \ncocommit users || \nMixes of both")
os.Exit(1) os.Exit(1)
} }