Skip to content

Commit

Permalink
Tidy up command text
Browse files Browse the repository at this point in the history
  • Loading branch information
inverse committed May 22, 2023
1 parent 8db7772 commit 96ecb4e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cmd/git-pair/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ func main() {

app := &cli.App{
Version: diagnostics.Version,
Usage: "A tool to make it easier for git based pairing for co-authoring commits",
Commands: []*cli.Command{
{
Name: "start",
Aliases: []string{"s"},
Usage: "start pairing mode",
Usage: "Start pairing mode",
Action: func(*cli.Context) error {
Start()
return nil
Expand All @@ -29,7 +30,7 @@ func main() {
{
Name: "end",
Aliases: []string{"e"},
Usage: "end pairing mode",
Usage: "End pairing mode",
Action: func(*cli.Context) error {
End()
return nil
Expand All @@ -38,7 +39,7 @@ func main() {
{
Name: "info",
Aliases: []string{"i"},
Usage: "show pairing info",
Usage: "Show pairing info",
Action: func(*cli.Context) error {
Info()
return nil
Expand Down

0 comments on commit 96ecb4e

Please sign in to comment.