我正在尝试将我的hello_app推送到我的bitbucket存储库。 我有一个现有的项目,并且无法执行这些步骤:
cd /path/to/my/repo
git remote add origin git@bitbucket.org:Bob123/hello_app.git
git push -u origin --all
git push -u origin --tags
当我在cloud9的shell中cd /path/to/my/repo
时,我收到此错误:
cd: /path/to/my/repo: No such file or directory
答案 0 :(得分:1)
我不知道有问题的人是否解决了这个问题,但这就是我解决这个问题的方法。
使用本教程:https://confluence.atlassian.com/display/BITBUCKET/Import+code+from+an+existing+project
在项目的根目录中,运行:
git init
git add .
git commit -m "message"
然后按照回购首页的步骤进行操作:
git remote add origin https://xxxx@bitbucket.org/xxx/xxx.git
git push -u origin --all
git push -u origin --tags
希望我能帮助别人!