Skip to content

Instantly share code, notes, and snippets.

View s-barsch's full-sized avatar

s barsch s-barsch

View GitHub Profile
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active September 26, 2024 18:52
Conventional Commits Cheatsheet

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@rtfb
rtfb / main.go
Created July 28, 2017 19:36
A complete example of a custom Blackfriday v2 renderer with pygmentizing CodeBlock handler
package main
import (
"fmt"
"io"
"os/exec"
bf "gopkg.in/russross/blackfriday.v2"
)