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?

GitHubでプルリクエスト

Posted at
  • 「Compare & pull request」を押下
    image.png

  • 「Add a description」に必要な情報を入力後、「Create pull request」を押下
    image.png

  • 「Merge pull request」を押下
    image.png

※マージの種類について
・Merge Commit(マージコミット)
これは最も一般的なマージ方法で、プルリクエストの全てのコミットをメインブランチにマージします。
このプロセスはマージコミットを生成し、プルリクエストのコミット履歴がそのままメインブランチに追加される。

・Squash and Merge(スカッシュマージ)
この方法では、プルリクエスト内の全てのコミットが1つのコミットに統合されてからメインブランチにマージされる。
これにより、履歴が綺麗に保たれ、不要な中間コミットが除去されますが、個々のコミットの詳細は失われる。

・Rebase and Merge(リベースマージ)
この方法では、プルリクエストのコミットがメインブランチの最新コミットの上に再配置(リベース)されてからマージされる。
これにより、リニアなコミット履歴が保たれますが、リベースの過程でコンフリクトが発生する可能性がある。

  • 「Confirm merge」を押下
    image.png

image.png

補足

  • 「Delete branch」を押下するとブランチを削除出来る
    image.png

image.png

参考

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?