git-cl
git-cl copied to clipboard
Git command line tool for managing your CHANGELOG with defined schema entries in your commits
I just ran this on a repo that hasn't been using `git cl` yet. While poking around with the `git cl full -p` and I noticed the that sorting of...
Currently the category matching are case sensitive so they only match lower case versions, e.g. `added:`. It would be nicer if it also matched variations like `Added:`, or even `ADDED:`.
It would be great if there could be an option/flag to capture changelog entries that where headed with a markdown title instead of the `[changelog]` header. For example: ```markdown ##...
It seems like you could automate opening up a release on GitHub: https://docs.github.com/en/repositories/releasing-projects-on-github/automation-for-release-forms-with-query-parameters I wonder if git-cl would utilize a hook pattern like git-ps-rs is using now to allow this...
Fixes https://github.com/uptech/git-cl/issues/52
**Description** When cloning a github repository using https the links of the different tags are not generated. If the clone is done with git protocol it works correctly. **Environment** Ubuntu...
As I run through different OSS projects it seems they often have the following categories of changes: `features`, `bugs`, `chores`. I also feel like I commonly see `docs` although I'm...