Skip to content

2ood/semantic-commit-writer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

semantic-commit-writer

Static Badge | Static Badge | code size | GitHub License

This website generates semantic commit messages easily. This generator generates on semantic commit message rule based on conventional commits.

Check deployed version!

main

Write your commit messages easily.

This generator is useful in following aspects:

  1. Follow commit conventions : any other programmers can easily understand your commit.
  2. Keep commit concise : using types only from given commit types makes our commit logs concise.
  3. Easy to use : it is web-based, easy to use.
  4. markdown supported : the description is written on markdown editor.
  5. fast, light-weight : it is built with bootstrap5, and other codes are written in vanilla javascript.
  6. Lively deployed by Github page.

How to use

1. Fill in the inputs.

Commit type and commit title is required. Other fields are optional. If you check advanced mode, you can add more complex commit commands.

main

2. Generate!

Once required fields are filled out, generate button will be enabled. When you press it, a modal will pop up, showing the generated command. You can copy the generated command with Copy command button.

modal-opened

  1. use it in CLI Open the terminal in the directory you are working on (that's managed with git) and paste as follows
$ git add -A
$ ## paste what you copied ##
$ git push

Used Tech / Dependencies