This repository was archived by the owner on May 24, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +18
-18
lines changed Expand file tree Collapse file tree 4 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ import (
19
19
// CmdIssues represents to login a gitea server.
20
20
var CmdIssues = cli.Command {
21
21
Name : "issues" ,
22
- Usage : "Log in a Gitea server " ,
23
- Description : `Log in a Gitea server ` ,
22
+ Usage : "Operate with issues of the repository " ,
23
+ Description : `Operate with issues of the repository ` ,
24
24
Action : runIssues ,
25
25
Subcommands : []cli.Command {
26
26
CmdIssuesList ,
@@ -29,19 +29,19 @@ var CmdIssues = cli.Command{
29
29
Flags : []cli.Flag {
30
30
cli.StringFlag {
31
31
Name : "login, l" ,
32
- Usage : "Indicate one login" ,
32
+ Usage : "Indicate one login, optional when inside a gitea repository " ,
33
33
},
34
34
cli.StringFlag {
35
35
Name : "repo, r" ,
36
- Usage : "Indicate one repository" ,
36
+ Usage : "Indicate one repository, optional when inside a gitea repository " ,
37
37
},
38
38
},
39
39
}
40
40
41
41
var CmdIssuesList = cli.Command {
42
42
Name : "ls" ,
43
- Usage : "Log in a Gitea server " ,
44
- Description : `Log in a Gitea server ` ,
43
+ Usage : "List issues of the repository " ,
44
+ Description : `List issues of the repository ` ,
45
45
Action : runIssuesList ,
46
46
}
47
47
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ var CmdLogin = cli.Command{
31
31
// CmdLogin represents to login a gitea server.
32
32
var cmdLoginAdd = cli.Command {
33
33
Name : "add" ,
34
- Usage : "Log in a Gitea server" ,
35
- Description : `Log in a Gitea server` ,
34
+ Usage : "Add a Login of a Gitea server" ,
35
+ Description : `Add a Login of a Gitea server` ,
36
36
Flags : []cli.Flag {
37
37
cli.StringFlag {
38
38
Name : "name, n" ,
@@ -115,8 +115,8 @@ func runLoginAdd(ctx *cli.Context) error {
115
115
// CmdLogin represents to login a gitea server.
116
116
var cmdLoginList = cli.Command {
117
117
Name : "ls" ,
118
- Usage : "Log in a Gitea server " ,
119
- Description : `Log in a Gitea server ` ,
118
+ Usage : "List all Logins of Gitea servers " ,
119
+ Description : `List all Logins of Gitea servers ` ,
120
120
Action : runLoginList ,
121
121
}
122
122
Original file line number Diff line number Diff line change @@ -16,17 +16,17 @@ import (
16
16
// CmdPulls represents to login a gitea server.
17
17
var CmdPulls = cli.Command {
18
18
Name : "pulls" ,
19
- Usage : "Log in a Gitea server " ,
20
- Description : `Log in a Gitea server ` ,
19
+ Usage : "Operate with pulls of the repository " ,
20
+ Description : `Operate with pulls of the repository ` ,
21
21
Action : runPulls ,
22
22
Flags : []cli.Flag {
23
23
cli.StringFlag {
24
24
Name : "login, l" ,
25
- Usage : "Indicate one login" ,
25
+ Usage : "Indicate one login, optional when inside a gitea repository " ,
26
26
},
27
27
cli.StringFlag {
28
28
Name : "repo, r" ,
29
- Usage : "Indicate one repository" ,
29
+ Usage : "Indicate one repository, optional when inside a gitea repository " ,
30
30
},
31
31
},
32
32
}
Original file line number Diff line number Diff line change @@ -18,20 +18,20 @@ import (
18
18
// CmdReleases represents to login a gitea server.
19
19
var CmdReleases = cli.Command {
20
20
Name : "releases" ,
21
- Usage : "Log in a Gitea server " ,
22
- Description : `Log in a Gitea server ` ,
21
+ Usage : "Operate with releases of the repository " ,
22
+ Description : `Operate with releases of the repository ` ,
23
23
Action : runReleases ,
24
24
Subcommands : []cli.Command {
25
25
CmdReleaseCreate ,
26
26
},
27
27
Flags : []cli.Flag {
28
28
cli.StringFlag {
29
29
Name : "login, l" ,
30
- Usage : "Indicate one login" ,
30
+ Usage : "Indicate one login, optional when inside a gitea repository " ,
31
31
},
32
32
cli.StringFlag {
33
33
Name : "repo, r" ,
34
- Usage : "Indicate one repository" ,
34
+ Usage : "Indicate one repository, optional when inside a gitea repository " ,
35
35
},
36
36
},
37
37
}
You can’t perform that action at this time.
0 commit comments