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

PRを送られた際のコンフリクトの解決法

Last updated at Posted at 2020-05-01

PRを相手から送ってもらったのは初めての経験なので記録に残します。

参考記事
https://qiita.com/Kto_pi/items/4fd6bdec72e852763315

conversationのマージボタンをクリックするとコンフリクトが発生しているとのこと。

今回はgithub上で直せるコンフリクトでした。

下記のような感じで表示されるので該当部分を削除してあげます。

今回は元々あったmasterブランチと、PRで送ってもらった部分がコンフリクトしていました。

したがってmasterの部分を消してあげます。

下記の部分です。下記コードの上には最新(HEAD)となるコードが表示されていました。(省略しています。)

=======
      host: portfolio.crtlvydt6zsr.ap-northeast-1.rds.amazonaws.com
      username: root  
      password: Shota033           
      pool: 5
    development:
      <<: *default
      database: porfolio_development
    test:
      <<: *default
      database: portfolio_test
>>>>>>> master

該当部分の削除の仕方を失敗してしまうと、アプリが動かなくなってしまうので注意。

通常conflictが起きた場合は最新のcommitと一個前のcommitが二つ表示されるので、どちらかを削除するようにしましょう。(下に表示されているコードを消すのが多いと思います。)

=====HEAD====  
gem1
gem2
変更てん
=====commitID===  #消す
gem1              #消す
gem2              #消す
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?