通过gitbash命令行推送到Bitbucket远程存储库

时间:2018-05-09 04:37:27

标签: ruby-on-rails ruby git bitbucket

在bitbucket上创建了一个存储库。试图"推高"到存储库,虽然我不确定这意味着什么?

此外,更重要的是,我在尝试执行两行时遇到错误:

$ git remote add origin git@bitbucket.com/addyd/toy_app.git/src/master
fatal: remote origin already exists.

Addy@DESKTOP-6L1EGSI MINGW64 /c/Sites/environment/toy_app (master) $
git remote add origin git@bitbucket.com/addyd/toy_app.git/src/master1

有任何帮助吗?

2 个答案:

答案 0 :(得分:1)

如果输入命令git remote -v

,它返回的内容

如果已经存在git远程源,它将打印类似

的内容

origin https://bitbucket.com/addyd/toy_app.git(fetch) origin https://bitbucket.com/addyd/toy_app.git(push)

如果已经存在并指向正确的存储库,请执行ACP

git add . git commit -m "commit message" git push origin branch

答案 1 :(得分:0)

更新更改源的正确命令是:

git remote set-url origin ssh://git@bitbucket.org/addyd/toy_app.git

但是如果之前已经设置了,则不应该更新原点,并且如果您成功克隆了该repo:添加一些提交,然后:

git push -u origin master