从远程分支拉出时出错

时间:2011-12-16 09:58:09

标签: git github

我最初在我的master分支机构。

然后,我创建了一个新分支:

git branch my-other-branch

然后,在我对项目进行了一些更改后,我将此分支推送到origin以使其成为远程分支

git push origin my-other-branch

我想现在my-other-branch可供其他团队成员使用。

过了一段时间,我做了一些更改,添加并提交,然后我尝试从远程分支:< / p>

git pull origin my-other-branch

我收到错误

  

错误:无法连接到SERVER_NAME:443;访问https://SERVER_NAME/projects/bank_project/repositories/git/bank/info/refs

时正在进行操作      

致命:HTTP请求失败

为什么我会收到错误,哪里错了?

(我的Git版本是1.7.2.3,我的操作系统是Linux / Ubuntu)

1 个答案:

答案 0 :(得分:0)

在这里,您需要设置分支跟踪。请运行以下

git branch --track my-other-branch origin/my-other branch
git pull origin my-otherbranch