Merge pull request #11752 from Homebrew/update-man-completions

Update maintainers, manpage and completions.
This commit is contained in:
Rylan Polster 2021-07-20 18:10:33 -04:00 committed by GitHub
commit e2d29b70f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 0 deletions

View File

@ -1518,6 +1518,7 @@ _brew_pr_automerge() {
--debug --debug
--help --help
--ignore-failures --ignore-failures
--no-autosquash
--publish --publish
--quiet --quiet
--tap --tap
@ -1542,6 +1543,7 @@ _brew_pr_publish() {
--debug --debug
--help --help
--message --message
--no-autosquash
--quiet --quiet
--tap --tap
--verbose --verbose

View File

@ -1049,6 +1049,7 @@ __fish_brew_complete_arg 'pr-automerge' -l autosquash -d 'Instruct `brew pr-publ
__fish_brew_complete_arg 'pr-automerge' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'pr-automerge' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'pr-automerge' -l help -d 'Show this message' __fish_brew_complete_arg 'pr-automerge' -l help -d 'Show this message'
__fish_brew_complete_arg 'pr-automerge' -l ignore-failures -d 'Include pull requests that have failing status checks' __fish_brew_complete_arg 'pr-automerge' -l ignore-failures -d 'Include pull requests that have failing status checks'
__fish_brew_complete_arg 'pr-automerge' -l no-autosquash -d 'Instruct `brew pr-publish` to skip automatically reformatting and rewording commits in the pull request to the preferred format'
__fish_brew_complete_arg 'pr-automerge' -l publish -d 'Run `brew pr-publish` on matching pull requests' __fish_brew_complete_arg 'pr-automerge' -l publish -d 'Run `brew pr-publish` on matching pull requests'
__fish_brew_complete_arg 'pr-automerge' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'pr-automerge' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'pr-automerge' -l tap -d 'Target tap repository (default: `homebrew/core`)' __fish_brew_complete_arg 'pr-automerge' -l tap -d 'Target tap repository (default: `homebrew/core`)'
@ -1064,6 +1065,7 @@ __fish_brew_complete_arg 'pr-publish' -l branch -d 'Branch to publish to (defaul
__fish_brew_complete_arg 'pr-publish' -l debug -d 'Display any debugging information' __fish_brew_complete_arg 'pr-publish' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'pr-publish' -l help -d 'Show this message' __fish_brew_complete_arg 'pr-publish' -l help -d 'Show this message'
__fish_brew_complete_arg 'pr-publish' -l message -d 'Message to include when autosquashing revision bumps, deletions, and rebuilds' __fish_brew_complete_arg 'pr-publish' -l message -d 'Message to include when autosquashing revision bumps, deletions, and rebuilds'
__fish_brew_complete_arg 'pr-publish' -l no-autosquash -d 'Skip automatically reformatting and rewording commits in the pull request to the preferred format, even if supported on the target tap'
__fish_brew_complete_arg 'pr-publish' -l quiet -d 'Make some output more quiet' __fish_brew_complete_arg 'pr-publish' -l quiet -d 'Make some output more quiet'
__fish_brew_complete_arg 'pr-publish' -l tap -d 'Target tap repository (default: `homebrew/core`)' __fish_brew_complete_arg 'pr-publish' -l tap -d 'Target tap repository (default: `homebrew/core`)'
__fish_brew_complete_arg 'pr-publish' -l verbose -d 'Make some output more verbose' __fish_brew_complete_arg 'pr-publish' -l verbose -d 'Make some output more verbose'

View File

@ -1290,6 +1290,7 @@ _brew_pr_automerge() {
'--debug[Display any debugging information]' \ '--debug[Display any debugging information]' \
'--help[Show this message]' \ '--help[Show this message]' \
'--ignore-failures[Include pull requests that have failing status checks]' \ '--ignore-failures[Include pull requests that have failing status checks]' \
'--no-autosquash[Instruct `brew pr-publish` to skip automatically reformatting and rewording commits in the pull request to the preferred format]' \
'--publish[Run `brew pr-publish` on matching pull requests]' \ '--publish[Run `brew pr-publish` on matching pull requests]' \
'--quiet[Make some output more quiet]' \ '--quiet[Make some output more quiet]' \
'--tap[Target tap repository (default: `homebrew/core`)]' \ '--tap[Target tap repository (default: `homebrew/core`)]' \
@ -1307,6 +1308,7 @@ _brew_pr_publish() {
'--debug[Display any debugging information]' \ '--debug[Display any debugging information]' \
'--help[Show this message]' \ '--help[Show this message]' \
'--message[Message to include when autosquashing revision bumps, deletions, and rebuilds]' \ '--message[Message to include when autosquashing revision bumps, deletions, and rebuilds]' \
'--no-autosquash[Skip automatically reformatting and rewording commits in the pull request to the preferred format, even if supported on the target tap]' \
'--quiet[Make some output more quiet]' \ '--quiet[Make some output more quiet]' \
'--tap[Target tap repository (default: `homebrew/core`)]' \ '--tap[Target tap repository (default: `homebrew/core`)]' \
'--verbose[Make some output more verbose]' \ '--verbose[Make some output more verbose]' \

View File

@ -1176,6 +1176,8 @@ Find pull requests that can be automatically merged using `brew pr-publish`.
Run `brew pr-publish` on matching pull requests. Run `brew pr-publish` on matching pull requests.
* `--autosquash`: * `--autosquash`:
Instruct `brew pr-publish` to automatically reformat and reword commits in the pull request to our preferred format. Instruct `brew pr-publish` to automatically reformat and reword commits in the pull request to our preferred format.
* `--no-autosquash`:
Instruct `brew pr-publish` to skip automatically reformatting and rewording commits in the pull request to the preferred format.
* `--ignore-failures`: * `--ignore-failures`:
Include pull requests that have failing status checks. Include pull requests that have failing status checks.
@ -1186,6 +1188,8 @@ Requires write access to the repository.
* `--autosquash`: * `--autosquash`:
If supported on the target tap, automatically reformat and reword commits in the pull request to our preferred format. If supported on the target tap, automatically reformat and reword commits in the pull request to our preferred format.
* `--no-autosquash`:
Skip automatically reformatting and rewording commits in the pull request to the preferred format, even if supported on the target tap.
* `--branch`: * `--branch`:
Branch to publish to (default: `master`). Branch to publish to (default: `master`).
* `--message`: * `--message`:

View File

@ -1662,6 +1662,10 @@ Run \fBbrew pr\-publish\fR on matching pull requests\.
Instruct \fBbrew pr\-publish\fR to automatically reformat and reword commits in the pull request to our preferred format\. Instruct \fBbrew pr\-publish\fR to automatically reformat and reword commits in the pull request to our preferred format\.
. .
.TP .TP
\fB\-\-no\-autosquash\fR
Instruct \fBbrew pr\-publish\fR to skip automatically reformatting and rewording commits in the pull request to the preferred format\.
.
.TP
\fB\-\-ignore\-failures\fR \fB\-\-ignore\-failures\fR
Include pull requests that have failing status checks\. Include pull requests that have failing status checks\.
. .
@ -1673,6 +1677,10 @@ Publish bottles for a pull request with GitHub Actions\. Requires write access t
If supported on the target tap, automatically reformat and reword commits in the pull request to our preferred format\. If supported on the target tap, automatically reformat and reword commits in the pull request to our preferred format\.
. .
.TP .TP
\fB\-\-no\-autosquash\fR
Skip automatically reformatting and rewording commits in the pull request to the preferred format, even if supported on the target tap\.
.
.TP
\fB\-\-branch\fR \fB\-\-branch\fR
Branch to publish to (default: \fBmaster\fR)\. Branch to publish to (default: \fBmaster\fR)\.
. .