用Bitbucket无法推或拉

时间:2015-04-27 12:45:14

标签: git version-control bitbucket

我在Bitbucket遇到了一些问题。

我一直试图用我的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自己的。

非常感谢所有帮助。

1 个答案:

答案 0 :(得分:0)

答案是编辑.git / config文件并从那里删除Bitbucket部分。 然后添加:

git remote add origin git@bitbucket.org:username/file.git

之前:

git push -u origin --all