我有一个非常烦人的问题,我用所有应用程序删除了我以前在 heroku 上的帐户,然后我创建了一个新帐户,我想将远程分支添加到 git,然后问题就开始了。
git remote -v
heroku git@heroku.com:freezing-moon-116.git (fetch)
heroku git@heroku.com:freezing-moon-116.git (push)
origin git@gitbus.fiit.stuba.sk:laser_kn/laser_kn.git (fetch)
origin git@gitbus.fiit.stuba.sk:laser_kn/laser_kn.git (push)
git remote rm heroku
error: Could not remove config section 'remote.heroku'
vim .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
[remote "origin"]
url = git@gitbus.fiit.stuba.sk:laser_kn/laser_kn.git
fetch = +refs/heads/*:refs/remotes/origin/*
我的问题是如何删除损坏的远程 heroku 存储库并添加一个新的?
谢谢