問題
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側かに合わせる工夫が必要
参考文献
・【エラー解決】『 ! [rejected] master -> master (non-fast-forward) 』のせいでpushできねぇ
・【メモ】gitでremoteブランチとlocalブランチの対応付けを行う
・SourceTreeから始めるGit