-
Notifications
You must be signed in to change notification settings - Fork 13
開発フロー
Akito Tanikado edited this page Apr 25, 2018
·
2 revisions
- issue を立てる
- assign
- master から branch 切る
- 実装
- pull request
- review
- reviewer は PR のタイミングで決定
- merge
参考情報(kusumotolab/website より)
- master
- feature/add-hoge
- まずは issue を立てる
- master ブランチから feature ブランチを切る
コミットメッセージは以下のような形式で:
[add] refs #1 hoge 機能を追加しました
#1 は対応する issue 番号(あれば).
[add]
の部分(タグ)の種類:
- add
- ファイル・機能の追加
- update
- 既存の機能の修正
- fix
- バグの修正
- remove
- ファイル・機能の削除
タイトルは以下のような形式で:
#1 hoge 機能の追加
本文に Resolves #1
や Fixes #1
などと書いておくと,マージ時に対応する issue が自動的に閉じられる.
reviewer がマージしよう