github.com/zaquestion/lab@v0.25.1/docs/lab_project_create.md (about)

     1  ## lab project create
     2  
     3  Create a new project on GitLab
     4  
     5  ### Synopsis
     6  
     7  Create a new project on GitLab.
     8  
     9  "path" refers to the path on GitLab not including the group/namespace.
    10  If no path or name is provided and the current directory is a git repo,
    11  the name of the	current working directory will be used.
    12  
    13  ```
    14  lab project create [path] [flags]
    15  ```
    16  
    17  ### Examples
    18  
    19  ```
    20  lab project create myproject
    21  lab project create myproject -n "new proj"
    22  lab project create myproject -r myupstream
    23  lab project create -g mygroup myproject
    24  lab project create mygroup/myproject -n "new proj"
    25  lab project create myproject --http
    26  lab project create myproject --internal
    27  lab project create myproject --private
    28  lab project create myproject --public
    29  ```
    30  
    31  ### Options
    32  
    33  ```
    34    -d, --description string   description of the new project
    35    -g, --group string         group name (also known as namespace)
    36    -h, --help                 help for create
    37        --http                 use HTTP protocol instead of SSH
    38        --internal             make project internal: visible to any authenticated user (default)
    39    -n, --name string          name of the new project
    40    -p, --private              make project private: visible only to project members
    41        --public               make project public: visible without any authentication
    42    -r, --remote string        add remote referring to the new project
    43  ```
    44  
    45  ### Options inherited from parent commands
    46  
    47  ```
    48        --debug      Enable debug logging level
    49        --no-pager   Do not pipe output into a pager
    50        --quiet      Turn off any sort of logging. Only command output is printed
    51  ```
    52  
    53  ### SEE ALSO
    54  
    55  * [lab project](lab_project.md)	 - Perform project level operations on GitLab
    56  
    57  ###### Auto generated by spf13/cobra on 27-Jun-2022