diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-08-26 13:16:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 13:16:40 +0200 |
commit | a038e9567fd16259e3ed360ab0defd779e9c3901 (patch) | |
tree | 221419132694048995d4e90ef1a2626803be8c93 | |
parent | a7e44a0bb3629f776a52967d56ba67d9a61346eb (diff) | |
parent | af86dcdd28ee1b16d590af31672c838597e3f3ec (diff) | |
download | gitlab-a038e9567fd16259e3ed360ab0defd779e9c3901.tar.gz |
Merge pull request #1156 from python-gitlab/docs/group-projects-list-cli
docs(cli): add examples for group-project list
-rw-r--r-- | docs/cli.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/cli.rst b/docs/cli.rst index 4261d0e..da5a89e 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -192,6 +192,18 @@ List all the projects: $ gitlab project list --all +List all projects of a group: + +.. code-block:: console + + $ gitlab group-project list --all --group-id 1 + +List all projects of a group and its subgroups: + +.. code-block:: console + + $ gitlab group-project list --all --include-subgroups true --group-id 1 + Limit to 5 items per request, display the 1st page only .. code-block:: console |