我有一个使用rsync推送的应用。为了使用git,我进入了.dotcloud / config并更改了
"push_branch": null,
"push_protocol": "rsync"
到
"push_branch": "some_branch",
"push_protocol": "git"
然而,现在我试图推动:
$ dotcloud push
==> Pushing code with git, branch some_branch from "./" to application myapp
Error: Unable to spawn git
我做错了什么?我找不到更改推送协议的文档。
答案 0 :(得分:0)
使用git协议的正确方法是执行类似
的操作dotcloud connect --git appname [--branch branchname]
在dotcloud.yml所在的目录中。