mc706 / changelog-cli

A Command Line Interface that makes it easy to manage a helpful Changelog
MIT License
17 stars 15 forks source link

Idea: option to couple `git commit` from CLI #40

Open andrewcstewart opened 2 years ago

andrewcstewart commented 2 years ago

It would be handy to have an option to tack a git commit command along with the cl command, using the same message.

For example, right now you might manually do the following:

changelog new "add new feature x"
git commit -m "add new feature x"

With an optional flag, you could do both with one command:

changelog --git added "add new feature x"