fjy
@fjy

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

デプロイ後のファイルの変更と反映のエラーの解消法が分からない

解決したいこと

Rubyで作成したものをデプロイした後に記述を変更して反映させようとしたが、ファイルがmargeできておらず、このエラーを解消したい。
開発環境はCloud9で、フレームワークはRuby on Railsを使用しています。

発生している問題・エラー

$ git pull origin main
error: Pulling is not possible because you have unmerged files.
hint: Fix them up in the work tree, and then use 'git add/rm <file>'
hint: as appropriate to mark resolution and make a commit.
fatal: Exiting because of an unresolved conflict.

また、ステータスを見ると次のようになっていた。

$ git status
On branch main
Your branch and 'origin/main' have diverged,
and have 29 and 34 different commits each, respectively.
  (use "git pull" to merge the remote branch into yours)

You have unmerged paths.
  (fix conflicts and run "git commit")
  (use "git merge --abort" to abort the merge)

Unmerged paths:
  (use "git add <file>..." to mark resolution)
        both added:      app/controllers/public/sessions_controller.rb
        both added:      app/views/public/homes/top.html.erb

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        config/.env
        vendor/bundle/

no changes added to commit (use "git add" and/or "git commit -a")

自分で試したこと

ローカルでgit pushは行い、github上の変更は確認済み。pullをしたときに上記のようなエラーが出てしまいます。

0

No Answers yet.

Your answer might help someone💌