https://github.com/barelyhuman/nimclog
a smaller and tightly scoped version of commitlog
https://github.com/barelyhuman/nimclog
Last synced: 5 months ago
JSON representation
a smaller and tightly scoped version of commitlog
- Host: GitHub
- URL: https://github.com/barelyhuman/nimclog
- Owner: barelyhuman
- License: mit
- Created: 2022-02-21T17:36:16.000Z (almost 4 years ago)
- Default Branch: dev
- Last Pushed: 2022-02-26T10:28:14.000Z (almost 4 years ago)
- Last Synced: 2025-03-19T16:09:42.236Z (9 months ago)
- Language: Nim
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# nimclog
This is nim port of commitlog with a tighter scope
## Why ?
size, binary size.
also, to get better at nimlang
## Features
- Categorize git's logs into `["build","chore","ci","docs","feat","fix","perf","refactor","revert","style","test"]`
- Doesn't support scoped commits right now
- That's about it.
## Usage
```sh
# for everything
nimclog
# for a specific range
nimclog --start= --end=
# shorthand props for the same
nimclog -s=
nimclog -e=
```
## Installation
Cross compiled binaries can be found on the releases pages.
Windows builds have not been tested, please report if you find any issues running them.
You can also compile it on your own system using `nim` or `nimble`
```sh
nimble build
# or
nim c src/nimclog.nim
```
## License
[MIT](/LICENSE)