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

GitHub - Pull Requestの内容確認 #5

Posted at

簡単な修正の確認

送られたきたPull Requestのコードレビューを行う
確認でき大丈夫だったら、
「Merge pull request」ボタンを押して、完了

Pull Requestの内容を手元で確認する

// 1. 確認する前に自分のローカルリポジトリをcloneやfetchで最新にする
// 2. Pull Request送信側のリモートリポジトリを取得する
$git remote add {送信側ユーザ名} git@github.com:{送信側ユーザ名}/{ブランチ名}
$git fetch {送信側ユーザ名}

// 3. 確認用のブランチを作成して、マージする
$git checkout -b {ブランチ名}
$git merge {送信側ユーザ名}/work
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?