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

Github【プルリクエスト手順】

Last updated at Posted at 2020-11-16

GitHubのプルリクエストについて、説明していきます。

【目次】
1.ターミナルでのcommitとpushについて。
2.Githubで、プルリクエスト!

1.ターミナルでのcommitとpushについて。
①ターミナル上で、masterブランチに戻る。
$git checkout master

②Github上の最新のmasterを取得する。
$ git pull origin master

③修正用にブランチを作成する。
$ git checkout -b feature/ ブランチ名 

④必要な修正を行う。

⑤変更したファイル一覧と、変更した内容を確認する。
ファイル:$ git status
内容:$ git diff

⑥問題なければ、変更したファイルをブランチに追加する。
$ git add .

⑦コミットを行い、”コメント”を入れる。
$ git commit -m "コメント"

⑧プッシュを行う。
$ git push origin feature/ ブランチ名

2.Githubで、プルリクエスト!

0 Issues.png

①プッシュを行うと、Github上部にプルリクエストのタブが表示される。
それを押すと、、

image.png

②どのブランチからマスターにつなげるのかを、表示してくれる。
これを再度チェックして、

image.png

③必要なプロジェクトメンバーを入れてから、

image.png

④プッシュ。

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