From bc96f316ffa7dbf012e560c0b5304b716fb5daff Mon Sep 17 00:00:00 2001 From: Hariharan Date: Sun, 25 Apr 2021 20:16:36 +0530 Subject: CLI - allow user create without prompt (#650) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * CLI - allow user create without prompt. Fixes #577 * Update commands/user_create.go email message Co-authored-by: Michael Muré * Update docs Co-authored-by: Michael Muré --- misc/bash_completion/git-bug | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'misc') diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index 60872785..bdca026f 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -1257,6 +1257,24 @@ _git-bug_user_create() flags_with_completion=() flags_completion=() + flags+=("--avatar=") + two_word_flags+=("--avatar") + two_word_flags+=("-a") + local_nonpersistent_flags+=("--avatar") + local_nonpersistent_flags+=("--avatar=") + local_nonpersistent_flags+=("-a") + flags+=("--email=") + two_word_flags+=("--email") + two_word_flags+=("-e") + local_nonpersistent_flags+=("--email") + local_nonpersistent_flags+=("--email=") + local_nonpersistent_flags+=("-e") + flags+=("--name=") + two_word_flags+=("--name") + two_word_flags+=("-n") + local_nonpersistent_flags+=("--name") + local_nonpersistent_flags+=("--name=") + local_nonpersistent_flags+=("-n") must_have_one_flag=() must_have_one_noun=() -- cgit