@@ -100,40 +100,40 @@ To have emojis automatically inserted into your commits when you type a keyword,
100100./Utilities/setup.sh
101101```
102102
103- This will setup a git hook that will parse keywords into emojis when you make a commit.
103+ This will setup a git hook that will parse keywords between ` : ` into emojis when you make a commit.
104104
105105For example, comitting
106106
107107```
108- :initial: Created a new nibble!
108+ :initial: :feature: Created a new nibble!
109109```
110110
111111Will result in the git hook converting the commit message to
112112
113113```
114- π Created a new nibble!
114+ π β¨ Created a new nibble!
115115```
116116
117117Below is a list of supported keywords, along with their associated usages and emojis
118118
119119| Emoji | Keyword | Usage |
120120| -------| -------------------| ------------------------------------------------|
121- | π | : bug : | Indicates a bug fix. |
122- | π§Ή | : cleanup: | Indicates a small cleanup of code. |
123- | π¦ | : dependency: | Indicates the addition of a dependency. |
124- | π | : docs: | Indicates documentation updates. |
125- | β¨ | : feauture: | Indicates a new feature. |
126- | π | : fixup: | Indicates a quick tweak of code. |
127- | π | : initial: | Indicates an initial commit of a project. |
128- | π | : performance: | Indicates improvements to performance. |
129- | β»οΈ | : refactor: | Indicates code refactoring. |
130- | ποΈ | : removal: | Indicates the removal of code. |
131- | π | : security: | Indicates a security fix. |
132- | π¨ | : styling: | Indicates changes to code styling. |
133- | π | : tag: | Indicates a tag for a version. |
134- | π§ͺ | : tests: | Indicates test related work. |
135- | π§° | : tooling: | Indicates changes to tooling (Such as Actions) |
136- | π§ | : wip: | Indicates work that is in-progress. |
121+ | π | bug | Indicates a bug fix. |
122+ | π§Ή | cleanup | Indicates a small cleanup of code. |
123+ | π¦ | dependency | Indicates the addition of a dependency. |
124+ | π | docs | Indicates documentation updates. |
125+ | β¨ | feauture | Indicates a new feature. |
126+ | π | fixup | Indicates a quick tweak of code. |
127+ | π | initial | Indicates an initial commit of a project. |
128+ | π | performance | Indicates improvements to performance. |
129+ | β»οΈ | refactor | Indicates code refactoring. |
130+ | ποΈ | removal | Indicates the removal of code. |
131+ | π | security | Indicates a security fix. |
132+ | π¨ | styling | Indicates changes to code styling. |
133+ | π | tag | Indicates a tag for a version. |
134+ | π§ͺ | tests | Indicates test related work. |
135+ | π§° | tooling | Indicates changes to tooling (Such as Actions) |
136+ | π§ | wip | Indicates work that is in-progress. |
137137
138138
139139## Attribution
0 commit comments