0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

git + githubを使った開発の流れ

Posted at

gitを使った開発の流れ

まず、githubとセットアップが終わっている前提で書きます
流れとしては

1. git switch develop 

//メインのブランチに移動

2. git pull 

//developブランチの最新版を取得

3. git switch -c feature/add-login-page 

//developブランチ → featureブランチ(作業ブランチ)を作る

4. このブランチでコードを書く
5. git commit -am 'ログイン処理を追加' 

//変更をコミット

6. git push 

//github にコミットを反映

7. githubからプルリク作成、チャットでレビュー依頼

スクリーンショット 2022-07-28 16.26.14.png

8. 承認もらったらmerge pull requestsで、featureブランチをdevelopブランチにマージする

この流れで行って、各チケットごとにブランチを切り替えて開発を行っていく

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?