Skip to content

Commit

Permalink
fix(help): replace 'gitpair' with 'git pair'
Browse files Browse the repository at this point in the history
  • Loading branch information
bdo committed Apr 3, 2020
1 parent 04cb569 commit aa57b0c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/commands/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@ import { bold, red, dim } from 'chalk'

const HELP_TEXT = {
amend: `
Usage: gitpair amend
Usage: git pair amend
Amends a commit and adds co-authorship information.
`,
off: `
Usage: gitpair off
Usage: git pair off
Pauses pairing until you turn it on again.
See also: ${bold('`git pair on`')}
`,
on: `
Usage: gitpair on
Usage: git pair on
Resumes pairing with the previous pair.
See also: ${bold('`git pair off`')}
`,
info: `
Usage: gitpair info
Usage: git pair info
Displays who current pairs or if pairing is disabled.
`,
with: `
Usage: gitpair with <list>
Usage: git pair with <list>
Registers you pairing partners.
Expand All @@ -37,37 +37,37 @@ const HELP_TEXT = {
Examples:
> gitpair with smi
> git pair with smi
👥 ${dim("you're now pairing with")} ${dim(bold(`John Smith`))}.
> gitpair with peter paul mary
> git pair with peter paul mary
👥 ${dim("you're now pairing with")} ${dim(bold('Peter Yarrow, Paul Stookey and Mary Travers'))}.
> gitpair with
> git pair with
👤 ${dim(`not pairing with anyone`)}
See also: ${bold('`git pair off`')}
`,
trailers: `
Usage: gitpair trailers
Usage: git pair trailers
Prints the ${bold(`'Co-authored-by'`)} trailer message.
This is useful for your PR's merge commit message 😉
See also: ${bold('`git pair amend`')}
`,
version: `
Usage: gitpair version
Usage: git pair version
Prints the gitpair version.
Prints the git pair version.
`,
help: `
Usage: gitpair help <command>
Usage: git pair help <command>
Give specific help about a command.
`,
usage: `
Usage: gitpair <command>
Usage: git pair <command>
Helps you attribute co-authorship of git commits when pair-programming.
Expand All @@ -81,7 +81,7 @@ const HELP_TEXT = {
- help
- version
Run ${bold('`gitpair help COMMAND`')} for more information on specific commands.
Run ${bold('`git pair help COMMAND`')} for more information on specific commands.
Visit ${bold('https://github.com/bdo/gitpair')} to learn more about gitpair.
`,
}
Expand Down

0 comments on commit aa57b0c

Please sign in to comment.