diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-22 13:40:17 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-24 21:30:45 +0200 |
commit | e511f3d885e5e7f15d3b7f8e500380f0c63bc377 (patch) | |
tree | b2a2c0207cd1901401e9c902620b720331105095 /misc/bash_completion | |
parent | a58ac69c1f9246a1e544f0032f8dee8e8a769b04 (diff) | |
download | git-bug-e511f3d885e5e7f15d3b7f8e500380f0c63bc377.tar.gz |
[misc] update man docs and completion scripts
[cache] BugCache: Fix set metadata raw
[bridge/github] Fix graphql input objects
Diffstat (limited to 'misc/bash_completion')
-rw-r--r-- | misc/bash_completion/git-bug | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index 741dcc49..ae3242e5 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -351,6 +351,26 @@ _git-bug_bridge_pull() noun_aliases=() } +_git-bug_bridge_push() +{ + last_command="git-bug_bridge_push" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + _git-bug_bridge_rm() { last_command="git-bug_bridge_rm" @@ -380,6 +400,7 @@ _git-bug_bridge() commands=() commands+=("configure") commands+=("pull") + commands+=("push") commands+=("rm") flags=() |