Skip to content

Commit ca4fa93

Browse files
author
Sazon, John Bryan J
committed
Regenerate documentations [ci skip]
1 parent 37c6d74 commit ca4fa93

12 files changed

+220
-0
lines changed

docs/gitlabctl.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@ The login token will be saved in $HOME/.gitlabctl.yaml file.
4949
* [gitlabctl get](gitlabctl_get.md) - Get Gitlab resources
5050
* [gitlabctl login](gitlabctl_login.md) - Login to gitlab
5151
* [gitlabctl new](gitlabctl_new.md) - Create a Gitlab resource
52+
* [gitlabctl version](gitlabctl_version.md) -
5253

docs/gitlabctl_delete.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@ Delete a Gitlab resource
2828
* [gitlabctl delete project](gitlabctl_delete_project.md) - Delete a Gitlab project by specifying the full path
2929
* [gitlabctl delete project-hook](gitlabctl_delete_project-hook.md) - Delete a Gitlab project hook by specifying the project's full path or id
3030
* [gitlabctl delete ssh-key](gitlabctl_delete_ssh-key.md) - Delete registered ssh keys
31+
* [gitlabctl delete tag](gitlabctl_delete_tag.md) - Delete a project tag
3132
* [gitlabctl delete user](gitlabctl_delete_user.md) - Delete a Gitlab user by specifying the username
3233

docs/gitlabctl_delete_tag.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
## gitlabctl delete tag
2+
3+
Delete a project tag
4+
5+
### Synopsis
6+
7+
Delete a project tag
8+
9+
```
10+
gitlabctl delete tag [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
# delete v1.0 tag from project groupx/myapp
17+
gitlabctl delete tag v1.0 --project=groupx/myapp
18+
```
19+
20+
### Options
21+
22+
```
23+
-h, --help help for tag
24+
-p, --project string The name or ID of the project
25+
```
26+
27+
### Options inherited from parent commands
28+
29+
```
30+
--config string config file (default is $HOME/.gitlabctl.yaml)
31+
```
32+
33+
### SEE ALSO
34+
35+
* [gitlabctl delete](gitlabctl_delete.md) - Delete a Gitlab resource
36+

docs/gitlabctl_describe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ All gitlab resources can be found here https://docs.gitlab.com/ce/api/#resources
2626
* [gitlabctl describe group](gitlabctl_describe_group.md) - Describe a group by specifying the id or group path
2727
* [gitlabctl describe member](gitlabctl_describe_member.md) - Describe a member by specifying the username and source
2828
* [gitlabctl describe project](gitlabctl_describe_project.md) - Describe a project by specifying the id or project path
29+
* [gitlabctl describe tag](gitlabctl_describe_tag.md) - Describe a tag of a specified project
2930
* [gitlabctl describe user](gitlabctl_describe_user.md) - Describe a user by specifying the user id or username
3031

docs/gitlabctl_describe_tag.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
## gitlabctl describe tag
2+
3+
Describe a tag of a specified project
4+
5+
### Synopsis
6+
7+
Describe a tag of a specified project
8+
9+
```
10+
gitlabctl describe tag [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
gitlabctl describe tag v5.0 --project=devopsctl/gitlabctl
17+
```
18+
19+
### Options
20+
21+
```
22+
-h, --help help for tag
23+
-p, --project string The name or ID of the project
24+
```
25+
26+
### Options inherited from parent commands
27+
28+
```
29+
--config string config file (default is $HOME/.gitlabctl.yaml)
30+
-o, --out string Print the command output to the desired format. (json, yaml, simple) (default "simple")
31+
```
32+
33+
### SEE ALSO
34+
35+
* [gitlabctl describe](gitlabctl_describe.md) - Describe a gitlab resource
36+

docs/gitlabctl_get.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ Get Gitlab resources
3030
* [gitlabctl get project-hooks](gitlabctl_get_project-hooks.md) - List all project hooks of a specified project
3131
* [gitlabctl get projects](gitlabctl_get_projects.md) - List projects of the authenticated user or of a group
3232
* [gitlabctl get ssh-keys](gitlabctl_get_ssh-keys.md) - List all ssh keys of a user
33+
* [gitlabctl get tags](gitlabctl_get_tags.md) - List all tags of a repository
3334
* [gitlabctl get users](gitlabctl_get_users.md) - List all Gitlab users
3435

docs/gitlabctl_get_tags.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## gitlabctl get tags
2+
3+
List all tags of a repository
4+
5+
### Synopsis
6+
7+
List all tags of a repository
8+
9+
```
10+
gitlabctl get tags [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
gitlabctl get tags devopsctl/gitlabctl
17+
```
18+
19+
### Options
20+
21+
```
22+
-h, --help help for tags
23+
```
24+
25+
### Options inherited from parent commands
26+
27+
```
28+
--config string config file (default is $HOME/.gitlabctl.yaml)
29+
-o, --out string Print the command output to the desired format. (json, yaml, simple) (default "simple")
30+
--page int Page of results to retrieve
31+
--per-page int The number of results to include per page
32+
```
33+
34+
### SEE ALSO
35+
36+
* [gitlabctl get](gitlabctl_get.md) - Get Gitlab resources
37+

docs/gitlabctl_new.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Create a Gitlab resource
2727
* [gitlabctl new member](gitlabctl_new_member.md) - Create a new member by specifying the member name as the first argument
2828
* [gitlabctl new project](gitlabctl_new_project.md) - Create a new project by specifying the project name as the first argument
2929
* [gitlabctl new project-hook](gitlabctl_new_project-hook.md) - Create a new project hook by specifying the project id or project path as the first argument
30+
* [gitlabctl new release](gitlabctl_new_release.md) - Create a new release for a specified project
3031
* [gitlabctl new ssh-key](gitlabctl_new_ssh-key.md) - Upload or create ssh key for a gitlab user
32+
* [gitlabctl new tag](gitlabctl_new_tag.md) - Create a new tag for a specified project
3133
* [gitlabctl new user](gitlabctl_new_user.md) - Create a new user by specifying the username as the first argument
3234

docs/gitlabctl_new_release.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## gitlabctl new release
2+
3+
Create a new release for a specified project
4+
5+
### Synopsis
6+
7+
Create a new release for a specified project
8+
9+
```
10+
gitlabctl new release [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
# create release from v1.0 tag of project groupx/myapp
17+
gitlabctl new release sample --project=groupx/myapp --tag=v1.0
18+
```
19+
20+
### Options
21+
22+
```
23+
-h, --help help for release
24+
-p, --project string The name or ID of the project
25+
-t, --tag string The name of a tag
26+
```
27+
28+
### Options inherited from parent commands
29+
30+
```
31+
--config string config file (default is $HOME/.gitlabctl.yaml)
32+
-o, --out string Print the command output to the desired format. (json, yaml, simple) (default "simple")
33+
```
34+
35+
### SEE ALSO
36+
37+
* [gitlabctl new](gitlabctl_new.md) - Create a Gitlab resource
38+

docs/gitlabctl_new_tag.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## gitlabctl new tag
2+
3+
Create a new tag for a specified project
4+
5+
### Synopsis
6+
7+
Create a new tag for a specified project
8+
9+
```
10+
gitlabctl new tag [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
# create tag from master branch for project groupx/myapp
17+
gitlabctl new tag v2.0 --project=groupx/myapp --ref=master
18+
```
19+
20+
### Options
21+
22+
```
23+
-h, --help help for tag
24+
-p, --project string The name or ID of the project
25+
-r, --ref string The branch name or commit SHA to create branch from
26+
```
27+
28+
### Options inherited from parent commands
29+
30+
```
31+
--config string config file (default is $HOME/.gitlabctl.yaml)
32+
-o, --out string Print the command output to the desired format. (json, yaml, simple) (default "simple")
33+
```
34+
35+
### SEE ALSO
36+
37+
* [gitlabctl new](gitlabctl_new.md) - Create a Gitlab resource
38+

0 commit comments

Comments
 (0)