Skip to content

Commit

Permalink
Update flags(include-account => include-users) and fixed typo bugwq
Browse files Browse the repository at this point in the history
  • Loading branch information
hahwul committed Feb 22, 2021
1 parent e407161 commit f59b734
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ $ sudo snap install gitls
## Usage
```
Usage of gitls:
-include-account
include repo of account in targeet
-include-users
include repo of org users(member)
-l string
List of targets (e.g -l sample.lst)
-o string
Expand Down Expand Up @@ -98,9 +98,9 @@ https://github.com/s0md3v/Zen
https://github.com/s0md3v/zetanize
```

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

```
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func main() {
version := flag.Bool("version", false, "version of gitls")
proxy := flag.String("proxy", "", "using custom proxy")
useTor := flag.Bool("tor", false, "using tor proxy / localhost:9050")
includeAccount := flag.Bool("include-account", false, "include repo of account in targeet")
includeAccount := flag.Bool("include-users", false, "include repo of org users(member)")
flag.Parse()
options := model.Options{
Proxy: *proxy,
Expand Down

0 comments on commit f59b734

Please sign in to comment.