一切都很好。做了一些git推,没有问题。
今天我决定将我的框架更新到最新版本,所以它改变了我项目的目录结构。所以在bitbucket中,我创建了一个新的存储库(dev1.project.com),并将我的项目文件夹从OldName重命名为dev1.project.com
我编辑.git/config
指向我的新存储库:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[branch "master"]
[remote "origin"]
url = https://bitbucket.org/user/dev1.project.com.git
fetch = +refs/heads/*:refs/remotes/origin/*
当我做git remote -v
我得到: origin ssh://git@bitbucket.org/user/dev1.project.com.git(fetch) 来源ssh://git@bitbucket.org/user/dev1.project.com.git(推)
我回到我的项目文件夹,然后输入:
git init
git add .
git commit -m 'my first commit'
git push -u origin master
但我一直收到以下错误:
ssh: connect to host bitbucket.org port 22: Connection timed out
fatal: The remote end hung up unexpectedly
命令ssh -T git@bitbucket.org
为我提供与上述相同的消息。
命令:git config --get remote.origin.url
显示:
git@bitbucket.org:user/dev1.project.com.git
http://status.bitbucket.org/表明一切正常。
不确定为什么以前工作,现在不工作。
我在CentOS上,我不确定接下来应该做什么。我见过几个与iptables相关的答案,所以我试过了:
iptables -t filter -A OUTPUT -p tcp --match multiport --dport 22 -j ACCEPT
service iptables stop
service ip6tables stop
service sshd reload
service iptables start
service ip6tables start
但仍然没有,任何想法?
Ps:我还将CentOS从6.6更新到6.7,将php 5.4更新到5.6,但不认为这很重要。
更新#1
执行以下命令:
ps x | grep ssh-agent
eval `ssh-agent -s`
ssh-add --> then it asked for my password
收到消息:
Identity added: /root/.ssh/id_rsa (/root/.ssh/id_rsa)
然后
service sshd restart
但仍然没有
更新#2
我发送电子邮件给我的vps托管公司,询问我是否有办法打开端口22,然后回答:
I have disabled the monitoring system on the host node blocking traffic to Bitbucket.
我不知道这意味着什么,但事后一切都在发挥作用,显然我对此无能为力。
答案 0 :(得分:16)
我已经完成了下面提到的事情并开始工作了。
vim ~/.ssh/config
添加这些行并保存。
Host bitbucket.org
Hostname altssh.bitbucket.org
Port 443