32
25

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.

コンフリクトが解消できない!Resolve conflictsが押せない!!

Posted at

はじめに

共同開発を始めてコンフリクトに悩まされていたので
その中でもコンフリクトが解消できないパターンのコンフリクトに4回くらい遭遇し
なんどもメンバーの助けを借りてしまったので
いい加減覚えろ自分!!!
ということでqiita書きをします。
作業環境:visual studio code
    :github Desktop

今回書くことは
conflict.png

こちらです。

コンフリクト解消ボタンが押せない問題

コンフリクト解消したいのに解消できないのを解消します。

ローカルでコンフリクトを起こす

リモートデスクトップでコンフリクトは起こっていますが
ローカルではなぜか認識されていないので

masterに移動して
ローカルのmasterを最新の状態にします。

$ git pull origin master

では次にブランチを作業中のブランチにします。

$ git checkout 作業ブランチ

ローカルmasterにマージする

git merge master

するとvisual studio codeでコンフリクト起きてる箇所には丁寧に表記が変わっているので
あとは愚直に修正しています。

ローカル環境で該当箇所のエラーなどがないことを確認後
リモートブランチへPUSH!

以上です。
個人的なメモとして記録しておきます。

最後まで読んでいただきありがとうございました。

32
25
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
32
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?