git首次提交代码到github报错

操作步骤:

step 1:在github上建立一个仓库地址


step 2:git clone 仓库地址 名称


step 3 : cd 名称


step 4: 添加一个文件 如.gitignore


step 5: git add .  


ste 6: git commit -m 'first commit'


step 7:git push 

此时代码并没有push到github 上,而是报如下错误:

activiti@zookeeper:/home/workplace/reading-blog$ git push
No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
fatal: The remote end hung up unexpectedly
error: failed to push some refs to '[email protected]:yourname/reading-blog.git'

原因是git 首次提交代码到github上时需要使用

git push -u origin master


而不能直接使用

git push
话说以前使用git首次提交代码到github的时候没有这样的限制的,这个应该是git版本变更的缘故吧


参考地址:http://stackoverflow.com/questions/6529136/gitolite-default-remotes-for-new-repository



你可能感兴趣的:(开源学习)