我们正在尝试将我们的本地内容推送到“Bitbucket”中的存储库,但是在提交文件后尝试“git push”时出现以下错误。
错误消息
$ git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
你能在这方面帮助我们吗?
答案 0 :(得分:4)
我遇到了同样的问题,这可能对您有所帮助:
#initialize git in the folder
git init
#add remote repository (this did not work for me)
git remote add origin https://myusername@bitbucket.org/myusername/myrepo.git
#...so i changed it later (after some git add and commit commands)
git remote set-url origin https://myusername@bitbucket.org/myusername/myrepo.git
#now it worked:
git push -u origin master
如果收到错误消息remote origin already exists
,请运行:
git remote rm origin
答案 1 :(得分:3)
看起来很像你没有运行git remote add
命令。
通常这看起来像
git remote add origin ssh://git@bitbucket.org/[USERNAME]/[REPONAME].git
但如果您按照此处的文档操作,您应该能够找到存储库的正确信息:https://confluence.atlassian.com/display/BITBUCKET/Importing+code+from+an+existing+project
答案 2 :(得分:0)
您可以尝试git push --mirror url-of-your-bitbucket-remote
答案 3 :(得分:0)
我错误地跟随'i'缺席原因。
git remote add orign url
只有在使用以下命令
查看时才能找到git remote -v
并使用
删除它git remote remove orign
并使用
以正确拼写再次创建它git remote add origin url