Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danvixent/go-repos
A simple CLI to search a user's GitHub repositories.
https://github.com/danvixent/go-repos
cli github-api
Last synced: about 2 months ago
JSON representation
A simple CLI to search a user's GitHub repositories.
- Host: GitHub
- URL: https://github.com/danvixent/go-repos
- Owner: danvixent
- License: gpl-3.0
- Created: 2020-03-17T12:54:11.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-11T12:50:51.000Z (almost 5 years ago)
- Last Synced: 2024-10-16T03:44:39.302Z (3 months ago)
- Topics: cli, github-api
- Language: Go
- Homepage:
- Size: 68.4 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-repos
A simple CLI to search a user's GitHub repositories.
### Installation
After cloning the repository, you can create a binary from it by running the command:
```$ go build```
That would create a binary in your current directory with the name `go-repos`. If you want to rename the binary that is generated, you should add the `-o binaryname` to the build command e.g: `go build -o hubsearch`. A binary with the name `hubsearch` will be created.
Usage:
$ go-repos danvixent -must -name go-repos -lang go -date 2020 -desc CLI -stars 0
GitHub User danvixent has 1 matching Repositories:
Respository Name Description Language Creation Date
----- ------ ------ ------
danvixent/go-repos A simple CLI to search a user's GitHub repositories. Go March 17, 2020 12:54:11| Argument/Flag | Usage |
|---------------|----------------------------------------------------------------------------------------------------------------------|
| danvixent | Username to search GitHub for |
| -must | Print only Results that match all criteria, if absent, Repositories matching at least one criteria will be displayed |
| -name | Name Of Repository to search for |
| -lang | Language Base of Repository to Search for |
| -date | Creation Date Of Repository to Search For |
| -desc | Repository Description to Search For |
| -stars | Number Of Respository Stars to search For |