diff options
author | Michael Muré <batolettre@gmail.com> | 2021-02-28 21:39:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 21:39:57 +0100 |
commit | 87bc42fb4695872b82cfa9a922d423df7ff21132 (patch) | |
tree | 10067adb2ec24b4aa9f27ca2b0caa7da2055c618 /misc | |
parent | 78ca2783191e363ea192fa0c18bdd5c4e615bb8a (diff) | |
parent | ea329aed6909cac85680dbae37f6f4dcca134f8b (diff) | |
download | git-bug-87bc42fb4695872b82cfa9a922d423df7ff21132.tar.gz |
Merge pull request #584 from MichaelMure/upstream-host-cmdflag
Add option to specify host address
Diffstat (limited to 'misc')
-rw-r--r-- | misc/bash_completion/git-bug | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index 3cedd86a..8f2a0f8f 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -1331,6 +1331,10 @@ _git-bug_webui() flags_with_completion=() flags_completion=() + flags+=("--host=") + two_word_flags+=("--host") + local_nonpersistent_flags+=("--host") + local_nonpersistent_flags+=("--host=") flags+=("--open") local_nonpersistent_flags+=("--open") flags+=("--no-open") |