Skip to content

Instantly share code, notes, and snippets.

View henryckh's full-sized avatar
🎯
Focusing

Henry Chan henryckh

🎯
Focusing
  • Hong Kong
View GitHub Profile
@henryckh
henryckh / gitflow-breakdown.md
Created November 30, 2020 11:02 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@henryckh
henryckh / semantic-commit-messages.md
Created October 29, 2021 02:42 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example