фатальный: недействительный refspec (Heroku nodejs) - PullRequest
0 голосов
/ 28 апреля 2018

Я получаю эту ошибку при запуске:

git push heroku master
fatal: Invalid refspec ' https://git.heroku.com/damp-reef-82414.git'


Heroku Git URL - https://git.heroku.com/lit-earth-17372.git
https://lit-earth-17372.herokuapp.com/

https://git.heroku.com/damp-reef-82414.git был каталогом ранее на героку, Ссылка на текущую папку с помощью команды herolu create: https://lit -eer-17372.herokuapp.com /

.git / конфигурации

[core]
    repositoryformatversion = 0
    filemode = false
    bare = false
    logallrefupdates = true
    symlinks = false
    ignorecase = true
    hideDotFiles = dotGitOnly
[remote "abc"]
    url = https://git.heroku.com/lit-earth-17372.git
    fetch = +refs/heads/*:refs/remotes/abc/*
[remote "origin"]
    fetch = refs/heads/*:refs/remotes/origin/*

1 Ответ

0 голосов
/ 29 апреля 2018

Я вижу ' https://git.heroku.com/damp-reef-82414.git' с пробелом в начале.

На всякий случай, если это какая-то опечатка, попробуйте:

cd /path/to/my/local/repo
git remote set-url heroku https://git.heroku.com/damp-reef-82414.git

Эта же команда может использоваться для переключения на https://git.heroku.com/lit-earth-17372.git при необходимости.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...