0

我正在通过 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

但远程仓库不会被删除。如何删除我默认设置的 repo?

4

2 回答 2

3

只需将其设置回origin

$ git config branch.master.remote origin
于 2013-11-14T21:27:01.187 回答
0

试试git config --unset branch.master.remote这个应该只取消设置git config branch.master.remote heroku命令而不改变任何其他内容。

如果您想将其指向其他地方,请参阅@YuvalAdam 答案。

于 2013-11-14T21:34:50.847 回答