https://github.com/hbbio/forkizard
A wizard for comparing GitHub forks
https://github.com/hbbio/forkizard
fork github
Last synced: about 2 months ago
JSON representation
A wizard for comparing GitHub forks
- Host: GitHub
- URL: https://github.com/hbbio/forkizard
- Owner: hbbio
- License: mit
- Created: 2019-06-20T14:34:10.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T23:48:27.000Z (about 3 years ago)
- Last Synced: 2024-06-18T23:16:19.231Z (almost 2 years ago)
- Topics: fork, github
- Language: Go
- Size: 18.6 KB
- Stars: 52
- Watchers: 2
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# forkizard
A wizard for comparing GitHub forks.
Will become useless once GitHub displays the number of ahead/behind commits on the Forks page!
## Problem
[StackOverflow: How to determine which forks on GitHub are ahead?](https://stackoverflow.com/questions/54868988/how-to-determine-which-forks-on-github-are-ahead)
## Solution
Since there does not seem to be an API for that, we scrape the info message of each GitHub fork.
## Usage
Build with `go build` and run `forkizard org/repo`:
```
$ ./forkizard k0kubun/pp
2019/06/20 16:27:35 44 forks
44 / 44 [===============================================================================================================================] 100.00% 32s
done
/wtertius/pp +6 -3
/hbbio/pp +5 -3
/quanticko/pp +2 -12
/federico-bollo/pp +1 -12
/juntaki/pp +1 -12
/sniperkit/pp +1 -12
/yudai/pp +4 -39
/wangkechun/pp +2 -57
```
## Building with Docker
To build without installing golang, run:
```
bin/build
```
## Bugs
Current version might not compare subforks well.
## About
Written in #Go by @hbbio and released under the MIT license.