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

githubでconflict-コンフリクト(mergeした時の衝突?)した時の対処法・考え方(sourcetree)

Posted at

問題

sourcetreeを使ってgithub上にローカルフォルダを共有(pull request)しようとしたところconflictした

原因

すでに有るgithub上のレポジトリにローカルフォルダを共有(pull request)しようとした
(レポジトリからクローンしてるわけではないのでxcode上で誤差が出ることがあり、conflictになったと思われる)
当初はgithubの使い方をよく知らず、ローカルフォルダを直接githubサイトにアップロードしていた
https://github.com/jbnkk40/BallFaceCam
とりあえずこんな感じでもともとアップロードしてたリポジトリとつなぎ、sourcetreeで共有してみるもののエラーが発生

$ git init
Reinitialized existing Git repository in /Users/ユーザー名/Downloads/BallFaceCam-master/.git/
$ git remote add origin https://github.com/jbnkk40/BallFaceCam.git

【エラー解決】『 ! [rejected] master -> master (non-fast-forward) 』のせいでpushできねぇ
【メモ】gitでremoteブランチとlocalブランチの対応付けを行う
ググった結果この辺の記事を参考にしてmergeしてみるとconflictが発生

$ git fetch
$ git merge --allow-unrelated-histories
fatal: No remote for the current branch.
ユーザー名noMacBook-Air:BallFaceCam-master 
$ git branch --set-upstream-to=origin/master
Branch 'master' set up to track remote branch 'master' from 'origin'.
ユーザー名noMacBook-Air:BallFaceCam-master 
$ git merge --allow-unrelated-histories

原因をまとめるとこんな感じらしいです
github-conflict 原因1 .png

解決策

共有する前に、ローカル側かgithub側かに合わせる工夫が必要
github-conflict 原因2.png

参考文献

【エラー解決】『 ! [rejected] master -> master (non-fast-forward) 』のせいでpushできねぇ
【メモ】gitでremoteブランチとlocalブランチの対応付けを行う
SourceTreeから始めるGit

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?