diff options
author | Michael Muré <batolettre@gmail.com> | 2019-09-02 11:34:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-02 11:34:47 +0200 |
commit | 16af70894c0348ec90dfee69274f7d44ef2eb079 (patch) | |
tree | 5018a7356afa8ade6a69eb8767aa7a3439aa01da /misc/powershell_completion | |
parent | c7792a5d1279a92c8d0caf67a0cf688cc9e32e09 (diff) | |
parent | f3d8da10750d58fce482042cff87455a1e6f36e0 (diff) | |
download | git-bug-16af70894c0348ec90dfee69274f7d44ef2eb079.tar.gz |
Merge pull request #200 from MichaelMure/bridge-token-stdin
bridge: support --token-stdin
Diffstat (limited to 'misc/powershell_completion')
-rw-r--r-- | misc/powershell_completion/git-bug | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/powershell_completion/git-bug b/misc/powershell_completion/git-bug index 3785c0ad..9e0805f3 100644 --- a/misc/powershell_completion/git-bug +++ b/misc/powershell_completion/git-bug @@ -65,6 +65,7 @@ Register-ArgumentCompleter -Native -CommandName 'git-bug' -ScriptBlock { [CompletionResult]::new('--owner', 'owner', [CompletionResultType]::ParameterName, 'The owner of the target repository') [CompletionResult]::new('-T', 'T', [CompletionResultType]::ParameterName, 'The authentication token for the API') [CompletionResult]::new('--token', 'token', [CompletionResultType]::ParameterName, 'The authentication token for the API') + [CompletionResult]::new('--token-stdin', 'token-stdin', [CompletionResultType]::ParameterName, 'Will read the token from stdin and ignore --token') [CompletionResult]::new('-p', 'p', [CompletionResultType]::ParameterName, 'The name of the target repository') [CompletionResult]::new('--project', 'project', [CompletionResultType]::ParameterName, 'The name of the target repository') break |