git flow はじめました(メモ)

📅 2013/05/15

git git flow

新機能開発開始

$ git flow feature start new_function

新機能開発終了

$ git flow feature finish new_function
$ git push origin develop

新機能開発やっぱやめ

$ git branch
* develop
  feature/new_function
  master
$ git branch -d feature/new_function

新機能をリモートへpush

$ git push origin develop