Last active
October 24, 2025 17:56
-
Star
(408)
You must be signed in to star a gist -
Fork
(68)
You must be signed in to fork a gist
-
-
Save Zekfad/f51cb06ac76e2457f11c80ed705c95a3 to your computer and use it in GitHub Desktop.
Revisions
-
Zekfad revised this gist
May 24, 2022 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ # Quick examples * `feat: new feature` * `fix(scope): bug in scope` * `feat!: breaking change` / `feat(scope)!: rework API` * `chore(deps): update dependencies` # Commit types @@ -19,3 +19,4 @@ # Reminders * Put newline before extended commit body * More details at **[conventionalcommits.org](https://www.conventionalcommits.org/)** -
Zekfad revised this gist
Jan 29, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ # Commit types * `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) * `ci`: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) * **`chore`: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries** * `docs`: Documentation only changes * **`feat`: A new feature** * **`fix`: A bug fix** -
Zekfad revised this gist
Jan 15, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ # Commit types * `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) * `ci`: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) * **`chore`: Changes wich doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries** * `docs`: Documentation only changes * **`feat`: A new feature** * **`fix`: A bug fix** -
Zekfad revised this gist
Jul 14, 2020 . 1 changed file with 6 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,10 @@ # Quick examples * `feat: new feature` * `fix(scope): bug in scope` * `feat!: breaking change in API` * `chore(deps): update dependencies` # Commit types * `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) * `ci`: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) * **`chore`: Changes wich doesn't change source code or tests e.g. chnages to the build process, auxiliary tools, libraries** @@ -12,13 +17,5 @@ * `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) * `test`: Adding missing tests or correcting existing tests # Reminders * Put newline before extended commit body -
Zekfad revised this gist
Jul 14, 2020 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,10 +2,10 @@ * `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) * `ci`: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) * **`chore`: Changes wich doesn't change source code or tests e.g. chnages to the build process, auxiliary tools, libraries** * `docs`: Documentation only changes * **`feat`: A new feature** * **`fix`: A bug fix** * `perf`: A code change that improves performance * `refactor`: A code change that neither fixes a bug nor adds a feature * `revert`: Revert something -
Zekfad created this gist
Jul 14, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ # Commit types * `build`: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) * `ci`: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) * `chore`: Changes wich doesn't change source code or tests e.g. chnages to the build process, auxiliary tools, libraries * `docs`: Documentation only changes * `feat`: A new feature * `fix`: A bug fix * `perf`: A code change that improves performance * `refactor`: A code change that neither fixes a bug nor adds a feature * `revert`: Revert something * `style`: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) * `test`: Adding missing tests or correcting existing tests # Quick examples * `feat: new feature` * `fix(scope): bug in scope` * `feat!: breaking change in API` * `chore(deps): update dependencies` # Reminders * Put newline before extended commit body