0
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.

プルリクエストって何?

Posted at

####Pull-Request(プルリクエスト)とは?
自分のローカルブランチで行った作業を別の人に確認(ソースレビュー)してもらう為の機能になります。
個人的に優れていると思う点は以下の2点になります。

  1. ソースの改変が一目でわかる
  2. 各コードに対してのコメントが入れられる

####Pull-Requestの操作方法

  • ローカルブランチの作業をコミットする
$ git checkout feature/add-function
$ git add -A
$ git commit -m"修正内容"
  • リモートブランチへプッシュする
$ git push origin feature/add-function
  • プルリクエストを行う

gitHubのリポジトリ画面より「Pull requests」タブをクリックします。
Pull requests画面より「New pull request」(赤枠)をボタンを押下します。
スクリーンショット 2019-12-04 16.03.31.png

  • 対象のブランチを選択する

左(base)にマージするブランチを指定します。
右(compare)に作業分のブランチを指定します。
スクリーンショット 2019-12-04 16.12.58.png

  • コメントを入力してプルリクする

タイトルとコメントを入力して「Create pull request」ボタンを押します。
スクリーンショット 2019-12-04 16.27.40.png

####まとめ
今まで使用したことがなかった為、自分のメモ用としてまとめてみました。
私もこれを機にプルリクエストを使っていきたいと考えています。

####参考サイト
プルリクエストとは?|サルでもわかるGit入門【プロジェクト管理ツールBacklog】
チーム開発を変える「GitHub」とは?〜Pull Requestの使い方〜
ぼくが実際に運用していたGitブランチモデルについて

0
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
0
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?