snocommit
v1.0.2
Published
A Simple way to commit changes in current folder.
Downloads
37
Readme
snocommit
A Simple way to commit changes in current folder.
Example: fix <part> [description..]
part can be a dot '.' which means you want use current folder name as part
Install
pnpm install -g snocommit
# or
yarn install -g snocommit
# or
npm install -g snocommit
Usage & Workflow
# ...doing fixes changes ... and cd into your worked dir
# and run this > fix . cwd
$ ./ > cd packages/snocommit
$ ./packages/snocommit> fix . cwd
> git add . && git commit -m "fix(snocommit): cwd" && git pull && git push
REM all avaliable commands
# short alias
styles <part> [description..]
docs <part> [description..]
fix <part> [description..]
feat <part> [description..]
breaking <part> [description..]
chore <part> [description..]
# full command
snocommit styles <part> [description..]
snocommit docs <part> [description..]
snocommit fix <part> [description..]
snocommit feat <part> [description..]
snocommit breaking <part> [description..]
# examples
styles input larger placeholder
# => styles(input): larger placeholder
docs button with translate
# => docs(button): with translate
cd src/Header
fix . Avatar position
# => fix(Header): Avatar position
cd src/Header
fix . !Avatar position
# => fix(Header): Avatar position
# =>
# => BREAKING CHANGE: Avatar position
cd src/Footer
feat . done skeleton
# => feat(Footer): done skeleton
chore gitlab-ci split integrate tests from unit tests
# => chore(gitlab-ci): split integrate tests from unit tests
About
License
GPLv3 - The GNU General Public License v3.0 - GNU Project - Free Software Foundation
Author
Author: snomiao [email protected] Website: snomiao.com
Sponsors
- None yet.
Claim your sponsorship by donating snomiao <Email: [email protected]>
Contribute
The main repo is in here, any issue and PR's welcome.