Skip to content
This repository has been archived by the owner on Aug 29, 2021. It is now read-only.

プロジェクトへの参加の仕方

Kota Amasaka edited this page Sep 13, 2020 · 8 revisions

必要な環境

  • python3.8以上
  • poetry

大まかな流れ

  1. git clone
  2. developブランチに移動
  3. ブランチを切る
  4. 開発

ブランチのルール

  1. issue建てる(必ず)
  2. feature/#{issue_number}_fix_somethingみたいな感じでリポ作る
  3. そこで作業する
  4. developにマージ

コミットのルール

feat: 新機能の追加
fix: バグフィックス
docs: ドキュメントの変更
style: スタイルの変更(フォーマッタかけたりとか)
refactor: バグや新機能の追加以外の変更
perf: パフォーマンス改善の変更
test: テストコードの追加・変更
chore: ライブラリの追加など

をコミットメッセージのプレフィックスにする

git commit -m "fix: xxxxを修正"