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.

プルリク作り方備忘録

Last updated at Posted at 2023-06-21

手順

1. ブランチを作る

ブランチ名を指定してブランチを作る、ブランチを移動

git checkout -b <branch_name>

2. 作業完了後、pushする

git push --set-upstream origin <branch_name>

リモートリポジトリに同じ名前のブランチが存在しない場合、新たにその名前のブランチがリモートリポジトリに作成される。
※ 他の人が同じ名前のリポジトリを作っていなければ。同じ名前だとコンフリクトする可能性が

3. githubへ

githubを見に行くと、プルリク作りますか的なボタンができているので、クリック。
必要な項目は入力する

4. マスターブランチに帰る

git checkout <masterのbranch名>
git branch --contains
git pull

最後pullしておく

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?