1. 準備
    1. 新規リポジトリ
      1. cd spam
      2. git flow init
      3. git remote add origin spam.git
      4. git push -u origin master
    2. 既存リポジトリ
      1. git clone spam.git
      2. cd spam
      3. git flow init
  2. 基本コマンド
    1. git-flow
      1. git flow feature
    2. git
      1. git diff
      2. git add FILE
      3. git commit -m "message"
      4. git log
      5. git branch
      6. git checkout
      7. git tag
      8. git push
  3. マスターブランチ
    1. master
  4. 開発ブランチ
    1. develop
  5. フィーチャーブランチ
    1. git flow feature start spam
    2. git commit -m "Add some feature."
    3. git flow feature finish spam
    4. git push origin develop
  6. リリースブランチ
    1. git flow release start 1.0.0
    2. git commit -m "Update README for release 1.0.0."
    3. git flow release finish 1.0.0
    4. git push
    5. git push origin 1.0.0
  7. ホットフィックスブランチ
    1. git flow hotfix start 1.0.1-somefix
    2. git commit -m "Fix something"
    3. git flow hotfix finish 1.0.1-somefix
    4. git push
    5. git push origin 1.0.1-somefix
  8. メインブランチ
  9. サポートブランチ