Heroku [удаленный отклонен] мастер -> мастер (предварительный прием отклонен) устранение неполадок - PullRequest
0 голосов
/ 18 июня 2020

Я развертываю свое приложение rails backend / response frontend на heroku. И я столкнулся с этой ошибкой при нажатии на мастер heroku:

remote:        Both npm and yarn have created lockfiles for this application,
remote:        but only one can be used to install dependencies. Installing
remote:        dependencies using the wrong package manager can result in missing
remote:        packages or subtle bugs in production.
remote: 
remote:        - To use npm to install your application's dependencies please delete
remote:          the yarn.lock file.
remote: 
remote:          $ git rm yarn.lock
remote: 
remote:        - To use yarn to install your application's dependences please delete
remote:          the package-lock.json file.

Я удалил файл package-lock. json, но при повторном нажатии на мастер heroku я получил следующее:

fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights

В чем проблема? Пропустил ли я шаг после удаления пакета. json?

...