Gitのブランチを活用する
以前からdevelopだの聞いてはいたがよく分かっていなかった
developとfeatureを試す
色々わかりやすくする
issueを発行: gh issue create
developブランチに移動: git checkout develop
issueに対応したブランチを切る: git branch feature/1
これでもいける?
git checkout -b feature/1 develop
作成したブランチに移動: git checkout feature/1
cf