|
17 | 17 | @click.option('--debug', default=False, is_flag=True,
|
18 | 18 | help="Output more information about what's going on.")
|
19 | 19 | @click.option('--token', metavar='TOKEN', envvar='PW_TOKEN',
|
20 |
| - help='Authentication token.') |
| 20 | + help="Authentication token. Defaults to the value of " |
| 21 | + "'git config pw.token'.") |
21 | 22 | @click.option('--username', metavar='USERNAME', envvar='PW_USERNAME',
|
22 |
| - help='Authentication username.') |
| 23 | + help="Authentication username. Defaults to the value of " |
| 24 | + "'git config pw.username'.") |
23 | 25 | @click.option('--password', metavar='PASSWORD', envvar='PW_PASSWORD',
|
24 |
| - help='Authentication password.') |
| 26 | + help="Authentication password. Defaults to the value of " |
| 27 | + "'git config pw.password'.") |
25 | 28 | @click.option('--server', metavar='SERVER', envvar='PW_SERVER',
|
26 |
| - help='Patchwork server address/hostname.') |
| 29 | + help="Patchwork server address/hostname. Defaults to the value " |
| 30 | + "of 'git config pw.server'.") |
27 | 31 | @click.option('--project', metavar='PROJECT', envvar='PW_PROJECT',
|
28 |
| - help='Patchwork project.') |
| 32 | + help="Patchwork project. Defaults the value of " |
| 33 | + "'git config pw.project'.") |
29 | 34 | @click.version_option()
|
30 | 35 | def cli(debug, token, username, password, server, project):
|
31 | 36 | """git-pw is a tool for integrating Git with Patchwork.
|
|
0 commit comments