作業中のgitの実際の使用
ブランチ名の作成
ブランチ名統合フォーマット:タイプ_タスク番号_プロジェクト_モジュール_今回の修正内容
例:
feature/T123_stuapp_index_xxxxx //
hotfix/T321_www_pay_xxxxxxx // BUG
release/T321_www_pay_xxxxxxx //
gitブランチライフサイクル使用
git checkout master
git pull
git checkout -b feature/feature-a
git checkout feature/feature-a
git fetch
git rebase origin/master
git add .
git rebase --continue