如何在Git中使用push production master?

时间:2016-09-12 04:33:14

标签: git

运行git push production master后我遇到了这些错误。

  

错误:src refspec master与any匹配。

     

错误:未能将某些引用推送到ssh://root@xxx.xxx.xxx.xx/var/repo/site.git'

2 个答案:

答案 0 :(得分:0)

按照正确的方法解决问题:

git add .
git commit -m 'initial commit'
git push origin master

答案 1 :(得分:0)

检查此链接:

您将看到如何在生产服务器和客户端机器中初始化git,因此可以使用:

git push production master

https://www.digitalocean.com/community/tutorials/how-to-use-git-hooks-to-automate-development-and-deployment-tasks