diff options
author | Michael Muré <batolettre@gmail.com> | 2019-12-10 00:42:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 00:42:23 +0100 |
commit | f1ed857cbd3a253d77b31c0c896fdc4ade40844f (patch) | |
tree | d1efe28a1fa666039bf8180bbed0202f0437910f /misc/bash_completion | |
parent | 69af7a1e0c2647c354fd9c5b55a254ba677200e1 (diff) | |
parent | 58c0e5aac97eabc02fa890123f3845ae6fe632a8 (diff) | |
download | git-bug-f1ed857cbd3a253d77b31c0c896fdc4ade40844f.tar.gz |
Merge pull request #271 from MichaelMure/bridge-credentials
bridge: huge refactor to accept multiple kind of credentials
Diffstat (limited to 'misc/bash_completion')
-rw-r--r-- | misc/bash_completion/git-bug | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index 8b850201..707369c5 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -404,14 +404,13 @@ _git-bug_bridge_configure() two_word_flags+=("--owner") two_word_flags+=("-o") local_nonpersistent_flags+=("--owner=") + flags+=("--credential=") + two_word_flags+=("--credential") + two_word_flags+=("-c") + local_nonpersistent_flags+=("--credential=") flags+=("--token=") two_word_flags+=("--token") - two_word_flags+=("-T") local_nonpersistent_flags+=("--token=") - flags+=("--token-id=") - two_word_flags+=("--token-id") - two_word_flags+=("-i") - local_nonpersistent_flags+=("--token-id=") flags+=("--token-stdin") local_nonpersistent_flags+=("--token-stdin") flags+=("--project=") |