aboutsummaryrefslogtreecommitdiffstats
path: root/completions
diff options
context:
space:
mode:
Diffstat (limited to 'completions')
-rw-r--r--completions/gitctl.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/completions/gitctl.bash b/completions/gitctl.bash
index 321a917..497d0a8 100644
--- a/completions/gitctl.bash
+++ b/completions/gitctl.bash
@@ -58,7 +58,7 @@ _gitctl() {
# flags, by subcommand
if [[ $cur == -* ]]; then
case "$group $action" in
- "repo create") COMPREPLY=($(compgen -W "--section --desc --owner" -- "$cur")) ;;
+ "repo create") COMPREPLY=($(compgen -W "--section --private --desc --owner" -- "$cur")) ;;
"repo add-remote") COMPREPLY=($(compgen -W "--remote-name" -- "$cur")) ;;
esac
return