Skip to content

Instantly share code, notes, and snippets.

@Zekfad
Last active October 24, 2025 17:56
Show Gist options
  • Save Zekfad/f51cb06ac76e2457f11c80ed705c95a3 to your computer and use it in GitHub Desktop.
Save Zekfad/f51cb06ac76e2457f11c80ed705c95a3 to your computer and use it in GitHub Desktop.

Revisions

  1. Zekfad revised this gist May 24, 2022. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion conventional-commits.md
    Original 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 in API`
    * `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/)**
  2. Zekfad revised this gist Jan 29, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion conventional-commits.md
    Original 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**
    * **`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**
  3. Zekfad revised this gist Jan 15, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion conventional-commits.md
    Original 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. chnages to the build process, auxiliary tools, libraries**
    * **`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**
  4. Zekfad revised this gist Jul 14, 2020. 1 changed file with 6 additions and 9 deletions.
    15 changes: 6 additions & 9 deletions conventional-commits.md
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,10 @@
    # Commit types
    # 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

    # 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
  5. Zekfad revised this gist Jul 14, 2020. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions conventional-commits.md
    Original 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
    * **`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
    * **`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
  6. Zekfad created this gist Jul 14, 2020.
    24 changes: 24 additions & 0 deletions conventional-commits.md
    Original 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