2017-10-02 17 views
0

私は最新のコードを引っ張るしようとしていますが、私のローカルシステムに展開Herokuのに別の開発者からプッシュされませんでしたエラー:gitのプルHerokuのマスターが

remote: Counting objects: 13, done. 
remote: Compressing objects: 100% (8/8), done. 
remote: Total 8 (delta 5), reused 1 (delta 0) 
Unpacking objects: 100% (8/8), done. 
From https://git.heroku.com/titan-demo 
* branch   master  -> FETCH_HEAD 
* [new branch]  master  -> heroku/master 
Auto-merging db/schema.rb 
CONFLICT (content): Merge conflict in db/schema.rb 
Automatic merge failed; fix conflicts and then commit the result. 
+1

[次に_fix競合とresult_コミット](https://help.github.com/articles/resolving-a-merge-競合を使用するコマンドライン/)。 –

+0

これはherokuのpgとローカルの別のデータベースを使用している可能性があります。なぜあなたは主人公を引っ張りたいのですか? – Panther

+1

[Gitのマージの競合を解決するにはどうすればいいですか?](https://stackoverflow.com/questions/161813/how-to-resolve-merge-conflicts-in-git) – kowsky

答えて

-1
CONFLICT occurs in following file at that time the git could not auto merge the CONFLICT so you will remove the conflict in manually in this file db/schema.rb. the file conflict location is denoted as below syntax so you will remove unnecessary code and after you push the code. 

// CONFLICT Example 
<<<<<<<<<<<< HEAD *code from develop* 
>>>>>>>>>>develop *code form your's* 
関連する問題