我正在尝试这个:
mkdir ~/gitremote
cd ~/gitremote
git init --bare
我可以看到像这样的文件名
HEAD config hooks objects
branches description info refs
好的,然后在另一个目录中,
git clone trosky@localhost:/Users/trosky/gitremote
vi readme (add one line)
git add .
git commit -m "1st file"
git push origin master
然后它给出了一个错误:
$git push origin master
error: src refspec master does not match any.
error: failed to push some refs to 'trosy@localhost:/Users/trosky/gitremote'
我搜索了谷歌,它说这种错误是由于远程仓库上的空文件夹造成的。但是远程仓库不是空的,我在本地提交的文件也不是空的。为什么这个错误仍然提示出来?
如何解决?谢谢。