Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 578 Bytes

File metadata and controls

38 lines (28 loc) · 578 Bytes

For Developers

Coding

Effective Go

commit 前に必ず go fmt でフォーマットをかける

GitHub

Branch Name

  • master
    • リリース用。 stable。
  • dev
    • 開発用ブランチ。latest。
  • feature
    • 機能追加。devから分岐してdevにmergeする。feature/{#issue}
  • fix
    • mainを修正するときに使用 fix/{#issue}

Commit Message

{type} {summary}

{detail}

type

  • [add]
    • 追加
  • [fix]
    • 修正
  • [wip]
    • 作業中
  • [clean]
    • 整理