Make help text more clear
This commit is contained in:
parent
bab551ec50
commit
83e678dad1
2 changed files with 4 additions and 4 deletions
|
@ -3,13 +3,13 @@
|
||||||
Archives the list of URLs provided on the standard input.
|
Archives the list of URLs provided on the standard input.
|
||||||
|
|
||||||
```plain
|
```plain
|
||||||
Usage of /bin/pad-archiver:
|
Usage of pad-archiver:
|
||||||
-C string
|
-C string
|
||||||
The directory containing the git repository in which to archive the pads. (default "/repo")
|
The directory containing the git repository in which to archive the pads. (default "$PWS")
|
||||||
-password string
|
-password string
|
||||||
The password for authenticating to the remote. Can also be specified via the environment variable GIT_PASSWORD.
|
The password for authenticating to the remote. Can also be specified via the environment variable GIT_PASSWORD.
|
||||||
-push
|
-push
|
||||||
Push the changes to the remote specified by remoteUrl
|
Push the changes to the remote specified by remoteUrl.
|
||||||
-url string
|
-url string
|
||||||
URL to push changes to.
|
URL to push changes to.
|
||||||
-username string
|
-username string
|
||||||
|
|
2
main.go
2
main.go
|
@ -147,7 +147,7 @@ func main() {
|
||||||
doPush := flag.Bool(
|
doPush := flag.Bool(
|
||||||
"push",
|
"push",
|
||||||
false,
|
false,
|
||||||
"Push the changes to the remote specified by remoteUrl",
|
"Push the changes to the remote specified by remoteUrl.",
|
||||||
)
|
)
|
||||||
username := flag.String(
|
username := flag.String(
|
||||||
"username",
|
"username",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue