无法使用 Bitbucket 进行推送或拉取
Unable to push or pull with Bitbucket
我在使用 Bitbucket 时遇到一些问题。
我一直在努力使我的 git 用法更花哨,但还是遇到了一些错误。首先是合并冲突,解决了。
但是每当我执行 git 推送时,我都会收到此错误:
fatal: The current branch development has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin development
我试图解决这个问题,但现在我只得到这个:
fatal: unable to connect to bitbucket.org:
bitbucket.org[0: 131.103.20.168]: errno=Connection refused
bitbucket.org[1: 131.103.20.167]: errno=Connection refused
IP 地址似乎是 Bitbucket 自己的。
非常感谢所有帮助。
答案是编辑 .git/config 文件并从那里删除 Bitbucket 部分。
然后添加:
git remote add origin git@bitbucket.org:username/file.git
做之前:
git push -u origin --all
我在使用 Bitbucket 时遇到一些问题。
我一直在努力使我的 git 用法更花哨,但还是遇到了一些错误。首先是合并冲突,解决了。 但是每当我执行 git 推送时,我都会收到此错误:
fatal: The current branch development has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin development
我试图解决这个问题,但现在我只得到这个:
fatal: unable to connect to bitbucket.org:
bitbucket.org[0: 131.103.20.168]: errno=Connection refused
bitbucket.org[1: 131.103.20.167]: errno=Connection refused
IP 地址似乎是 Bitbucket 自己的。
非常感谢所有帮助。
答案是编辑 .git/config 文件并从那里删除 Bitbucket 部分。 然后添加:
git remote add origin git@bitbucket.org:username/file.git
做之前:
git push -u origin --all