ghlog
is the unofficial GitHub CLI tool that contains the most-used functions on GitHub.
- Build
ghlog
usinggo
by the below command.
$ go build ghlog.go
-
Move your application to wherever your want, like
/usr/bin
onLinux
orC:/Program Files/ghlog
onWindows
, and add the environment path of theghlog
. -
Start your
ghlog
using the below command.
$ ghlog
- If login is required, you have to login with your
user id
andaccess token
.
It will be saved on .auth
file in Home Directory
.
You can print all of your repositories using the below command.
$ ghlog repo
Likes repo
, in addition, you can also print all organizations you joined using the below command.
$ ghlog org
It is also possible to create a new repository using the following command.
$ ghlog create repo
It will ask you about Repository name
and Visibility
of your repository.
Heatmap
prints a GitHub contribution chart that you can see on your GitHub profile in command-line interface.
You can simply print your heatmap with the below command.
$ ghlog heatmap
You can also check other users' heatmap just by adding username
.
$ ghlog heatmap devappmin
You can even search repositories from GitHub!
$ ghlog search <query> [from] [to]
MIT License
Copyright (c) 2022 Kim Seung Hwan
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.