======git-flow====== =====開発ブランチの新規作成===== developブランチから開始 $ git flow feature start 【ブランチ名】 =====ブランチの開発終了===== $ git flow feature finish 【ブランチ名】 developにマージされ、ブランチが削除され、developブランチに移動する =====ブランチのpush===== $ git flow feature publish 【ブランチ名】 =====リモートブランチの取り込み===== $ git flow feature pull 【ブランチ名】 =====リリース準備===== $ git flow release start 【ブランチ名】 【commitハッシュ値】 【commitハッシュ値】developのcommitのハッシュ値をしていする。ないならHEAD =====releaseブランチに修正をpush===== $ git flow release publish 【ブランチ名】 =====リリース準備の完了===== $ git flow release finish 【ブランチ名】 【ブランチ名】をmasterにマージし、リリース用のタグをつける。 developブランチに【ブランチ名】の内容をマージし【ブランチ名】を削除する。