项目管理命令:project
列出所有项目:ls
入口:
lbg project ls
概要:
usage: lbg project ls [-h] [-q] [-s] [-o] [--csv] [--json] [--yaml] [--table]
[--noheader]
options:
-h, --help show this help message and exit
-q, --quiet only show project id
-s, --self only show project belong to current user
-o, --other only show project not belong to current user
--csv output with csv format
--json output with json format
--yaml output with yaml format
--table output with table format
--noheader does not print header information
参数说明:
参数 | 缩写 | 说明 | 必填 |
---|---|---|---|
--quiet | -q | 只显示项目id | 否 |
--self | -s | 只显示创建人为自己的项目 | 否 |
--other | -o | 只显示创建人不为自己的项目 | 否 |
案例:
$ lbg project ls --yaml # 查看所有项目并输出为yaml格式
$ lbg project ls -s -q # 查看自己创建项目的id
切换默认项目:switch
入口:
lbg project switch <project_id>
概要:
usage: lbg project switch [-h] <pgid>
positional arguments:
<pgid> project id
options:
-h, --help show this help message and exit
参数说明:
参数 | 缩写 | 说明 | 必填 |
---|---|---|---|
project_id | - | 切换的project id | 是 |
案例:
$ lbg project switch 123 # 切换默认项目为123
查看当前项目:current
入口:
lbg project current
概要:
usage: lbg project current [-h]
options:
-h, --help show this help message and exit