Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit f59b734

Browse files
committed
Update flags(include-account => include-users) and fixed typo bugwq
1 parent e407161 commit f59b734

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ $ sudo snap install gitls
3838
## Usage
3939
```
4040
Usage of gitls:
41-
-include-account
42-
include repo of account in targeet
41+
-include-users
42+
include repo of org users(member)
4343
-l string
4444
List of targets (e.g -l sample.lst)
4545
-o string
@@ -98,9 +98,9 @@ https://github.com/s0md3v/Zen
9898
https://github.com/s0md3v/zetanize
9999
```
100100

101-
### Get all repository in org(included members)
101+
### Get all repository in org and included users(members)
102102
```
103-
$ echo https://github.com/paypal | ./gitls -include-account
103+
$ echo https://github.com/paypal | ./gitls -include-users
104104
```
105105

106106
```

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func main() {
1818
version := flag.Bool("version", false, "version of gitls")
1919
proxy := flag.String("proxy", "", "using custom proxy")
2020
useTor := flag.Bool("tor", false, "using tor proxy / localhost:9050")
21-
includeAccount := flag.Bool("include-account", false, "include repo of account in targeet")
21+
includeAccount := flag.Bool("include-users", false, "include repo of org users(member)")
2222
flag.Parse()
2323
options := model.Options{
2424
Proxy: *proxy,

0 commit comments

Comments
 (0)