Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alireza-mh/how-old-is-it
https://github.com/alireza-mh/how-old-is-it
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/alireza-mh/how-old-is-it
- Owner: alireza-mh
- Created: 2020-12-23T19:45:48.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-10T20:02:59.000Z (almost 4 years ago)
- Last Synced: 2024-04-23T20:36:29.807Z (7 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How old is it
Mini project that help you to get some info about a project that contains `git` versioning such as how old is it?You can easily use `git log --reverse` to get initial commit of the project. Here we gonna add some more features.
You can get commit count of specific branch with below command:
```sh
hoit --commit-count
```TODO:
1- How many commit are there?
2- How many people worked on the project?
3- Sort collaborators by commit or lines of code? (not good metric but it's for fun only)
4- summary of all these meta data on terminal
Solution for 1:
using `git rev-list --count ` command.