我正在进行octopress部署到heroku
http://octopress.org/docs/deploying/heroku/
我做了这个
git config branch.master.remote heroku
没有理解含义
它的
# Set heroku to be the default remote for push/fetch
我试过
git remote rm origin
但远程仓库不会被删除。如何删除默认设置的仓库?
答案 0 :(得分:3)
只需将其设置回origin
:
$ git config branch.master.remote origin
答案 1 :(得分:0)
尝试git config --unset branch.master.remote
这应该取消git config branch.master.remote heroku
命令,而不改变其他任何内容。
如果您想将其指向别处,请参阅@YuvalAdam回答。