Skip to content

Commit 83914a4

Browse files
committed
docs: usage, contribution guidelines
1 parent e0a5356 commit 83914a4

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
You are free to raise PR's for any kind of improvements and or feature additions, they'll be added to the repository accordingly, you can also fork up your own version as the repo will remain MIT licensed
2+
13
## Dev Guidelines
24
- Fork the Repo
3-
- Make your changes
5+
- Make your changes (use `git pull --rebase` when working with others to avoid creating un-needed merge commits )
46
- Raise a PR
57
- Your changes will then be reviewed and merged into a test pr-#id-rebase branch for testing
68
and then merged into `main` if everything goes through

readme.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,22 @@ Changelog generator using Commit History
66

77
# UNDER DEV
88

9-
it is usable by manualling installing the go package for now and isn't available as a binary right now, still under heavy development
9+
You can use the exisiting binaries from the releases page or install using `go get` though it is still under heavy development and will not be getting any test coverage until I'm done with most of the mvp functionality.
1010

1111
To see an example of this in action, you can check the actions file for this repo. Yes it uses itself to generate the release logs
1212

13+
## Usage
14+
15+
The usage is pretty simple, this cli tool assumes that you use [commitlint standards](https://github.com/conventional-changelog/commitlint#what-is-commitlint) while writing your commits, if not it's okay everything will be classified under `Other Changes` instead of being grouped according to type of commit.
16+
17+
**Simple Overview**
18+
`ci: <message>` - for ci/cd changes
19+
`feat|feature: <message>` - for feature changes
20+
`docs: <message>` - for documents or comment updations in code
21+
`refactor: <message>` - performance / code clean up changes or total BLOC changes
22+
`fix: <message>` - for fixes (self-explanatory)
23+
24+
1325
```sh
1426
commitlog path/to/repository
1527
```
@@ -39,4 +51,4 @@ b0f1b1d2bc4265cb72b70b3ae5b60f8e65f47b12 - initial commit
3951

4052
## Contribution
4153

42-
You are free to raise PR's for any kind of improvements and or feature additions, they'll be added to the repository accordingly, you can also fork up your own version
54+
[Contribution Guidelines](CONTRIBUTING.md)

0 commit comments

Comments
 (0)