Bitbucket - 将新项目推送到我的 bitbucket 存储库
Bitbucket - push a new projet to my bitbucket repo
我的 htdocs 中有该文件夹,我想将其推送到一个空的 bitbucket 存储库。
到目前为止,我已经按照 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
尝试按照错误消息中的指示指定分支。
而不是 git push -u origin --all
试试 git push origin master
已解决 - 我错过了一步。
git add -A # to add the brand new folders structure
和
git commit -m 'inicio do projeto'
最后
git push -u origin all
我的 htdocs 中有该文件夹,我想将其推送到一个空的 bitbucket 存储库。
到目前为止,我已经按照 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
尝试按照错误消息中的指示指定分支。
而不是 git push -u origin --all
试试 git push origin master
已解决 - 我错过了一步。
git add -A # to add the brand new folders structure
和
git commit -m 'inicio do projeto'
最后
git push -u origin all