1
1

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 3 years have passed since last update.

GitHub【プルリクエスト】

Posted at

#はじめに
これは学習用のメモになります。

#プルリクエストとは?
自分が変更したコードをリポジトリに取り込んでもらえるよう依頼する機能。(チーム開発で使用)

#プルリクエストの手順(開発フロー:GitHub Flow)
ローカル
①masterブランチを最新に更新
②ブランチを作成
③ファイルを変更
④変更をコミット
⑤GitHubへプッシュ
GitHub(リモートリポジトリ)
⑥プルリクエストを送る
⑦コードレビュー
⑧プルリクエストをマージ
⑥ブランチを削除

#GitHub Flowを実践する際のポイント(チーム開発)

  • masterブランチは常にデプロイできる状態に保つ
  • 新開発はmasterブランチから新しいブランチを作成してスタートする
  • 作成した新しいブランチ上で作業しコミットする
  • 定期的にPushする
  • masterにマージするためにプルリクエストを使う
  • 必ずレビューを受ける
  • masterブランチにマージしたらすぐにデプロイする←テストとデプロイ作業は自動化
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?