https://github.com/kabirnayeem99/required-programming-notes
https://github.com/kabirnayeem99/required-programming-notes
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kabirnayeem99/required-programming-notes
- Owner: kabirnayeem99
- Created: 2021-03-28T14:43:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-28T14:57:38.000Z (over 4 years ago)
- Last Synced: 2025-02-17T16:52:17.267Z (8 months ago)
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# notes on programming
## git Commit message guideline
Would be something like that.
`(): `### type
* build: Build related changes (eg: npm related/ adding external dependencies)
* chore: A code change that external user won't see (eg: change to .gitignore file or .prettierrc file)
* feat: A new feature
* fix: A bug fix
* docs: Documentation related changes
* refactor: A code that neither fix bug nor adds a feature. (eg: You can use this when there is semantic changes like renaming a variable/ function name)
* perf: A code that improves performance
* style: A code that is related to styling
* test: Adding new test or making changes to existing test### subject
* use imperative, present tense (eg: use "add" instead of "added" or "adds")
* don't use dot(.) at end
* don't capitalize first letter### emoji
* ๐ build
* ๐ chore
* ๐ฆ feat
* ๐ fix
* ๐ docs
* ๐๏ธ refactor
* ๐ perf
* ๐จ style
* ๐งช test### example
๐ build(app gradle): add new itextpdf library