LoginSignup
1
0

More than 3 years have passed since last update.

git-flow と git cz と github で良い感じに開発する方法

Last updated at Posted at 2020-04-15
git flow init
git flow feature start X
git add -p
git cz
git flow feature publish X

feature/X の PR を develop に github の PR 画面から develop にマージする

git checkout develop
git pull
git flow release start X
git flow release publish X

# release/X -> master PR
gh pr create --base master -w

git flow release finish X -k
git push origin develop
git push origin master
git push origin X

メモ

brew install github/gh/gh
git flow init
git flow release start XXXX
git graph
gh pr create --base master -w
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0