LoginSignup
0
0

More than 5 years have passed since last update.

Gitの使い方メモ

Posted at

リポジトリ作成

git-flowの準備

developブランチの作成

初期化

リポジトリ->Git flow->リポジトリの初期化

開発

新規フィーチャー作成

  1. developにリベース
  2. リポジトリ->Git flow->次のアクション
    『新規フィーチャーを開始』 フィーチャー名にはチケット番号を入れる。
  3. プッシュ
    念のため、先にプッシュ。
  4. 修正/追加など作業
  5. コミット
  6. プッシュ
    念のため、修正したブランチのみプッシュ。
  7. プルリクエストを作成
  8. マージ先は開発ブランチの『develop』
  9. マージ(この作業は責任者)
  10. フィーチャーの終了
    リポジトリ->Git flow->次のアクション
    『現在のブランチを終了』
    『ブランチを残す』
  11. フェッチ
  12. プル

リリース

  1. リポジトリ->Git flow->新規リリースを開始
    最新の開発ブランチ
  2. リポジトリ->Git flow->次のアクション
  3. 『master』ブランチをプッシュ
0
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
0
0