我的htdocs中有这个文件夹,我想把它推到一个空的bitbucket repo。
到目前为止,我已按照bitbuket网站上的说明进行操作
git init
git remote add origin https://andradebuddha@bitbucket.org/musica.git
cd /path/to/my/repo
git remote add origin https://andradebuddha@bitbucket.org/musica.git
git push -u origin --all # pushes up the repo and for the first time
但是我得到了这个错误
No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
Everything up-to-date
答案 0 :(得分:1)
解决了 - 我错过了一步。
git add -A # to add the brand new folders structure
和
git commit -m 'inicio do projeto'
和最终
git push -u origin all
答案 1 :(得分:0)
尝试按错误消息中的指示指定分支。
而不是git push -u origin --all
尝试git push origin master