0

我正在尝试按照此处的说明使用 WPengine 设置 git:( http://wpengine.com/git/#production ) - 但是当我开始执行部署步骤时,出现以下错误:

% git remote -v  
production  git@git.wpengine.com:production/workshop-wp.git (fetch)
production  git@git.wpengine.com:production/workshop-wp.git (push)
% git push production master ...
fatal: remote part of refspec is not a valid name in ...
4

2 回答 2

1

不要...输入推送命令。正确的语法是

git push production master

我知道您链接到的教程中的说明是这样做的:

git push production master ...

但这完全不正确

于 2014-05-28T00:01:20.707 回答
0

我让它工作。我试图部署我的 GitHub 存储库名称:

$ git remote add production git@git.wpengine.com:production/my_wordpress_app.git

而不是部署我的 wpengine 用户名

$ git remote add production git@git.wpengine.com:production/robertwilliams.git
于 2014-05-28T19:09:17.660 回答