git: No refs in common and none specified; doing no

用gitolite新建项目,clone后首次push,可能会出现:
 
 
  1. $ git push  
  2. No refs in common and none specified; doing nothing.  
  3. Perhaps you should specify a branch such as 'master'.  
  4. fatal: The remote end hung up unexpectedly  
  5. error: failed to push some refs to 'file:///xxxxxxx.git'  
 
.这是Git 找不到你要提交的版本了。
 
解决办法:git push origin master
 
http://blog.sina.com.cn/s/blog_7607703f01018hsv.html
原文地址:https://www.cnblogs.com/coolid/p/4441954.html