设置Git时,'致命:refspec的远程部分不是...中的有效名称'错误

时间:2014-05-27 23:47:30

标签: wordpress git refspec

我正在尝试使用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 ...

2 个答案:

答案 0 :(得分:1)

不要将...放入推送命令中。正确的语法是

git push production master

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

git push production master ...

但这只是公然不正确

答案 1 :(得分: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