Windows 8:git无法推送或拉取或克隆

时间:2013-12-15 04:38:13

标签: windows git

我安装了Windows 8(在此之前,我使用的是Windows 7)。在Windows 7中,我通常使用git命令。但我不知道为什么,在Windows 8中,git命令与网络(推,拉或克隆)有关,不能再工作了。例如,当我使用:

git clone https://github.com/jfeinstein10/SlidingMenu

正如下面的一些帖子,我已经改为另一个链接,但仍然得到同样的错误:

git clone https://github.com/jfeinstein10/SlidingMenu.git

我会收到此错误:

fatal : unable to access "https://github.com/jfeinstein10/SlidingMenu' Could not resolve proxy : proxyaddress

我已经用Google搜索并获得了一些结果,但是当我尝试时仍无法解决此问题。

请告诉我如何解决这个问题。谢谢:))

3 个答案:

答案 0 :(得分:4)

网址不必以.git结尾,这应该可以正常使用。

git clone https://github.com/jfeinstein10/SlidingMenu

真正的问题是您的代理设置:

  

致命:无法访问“https://github.com/jfeinstein10/SlidingMenu”无法解析代理:proxyaddress

由于您的代理服务器的价值显然是“proxyaddress”,因此它看起来像副本&粘贴git配置,忘记将“proxyaddress”替换为代理服务器的正确地址。要么在~/.gitconfig中修复,要么完全删除代理设置:

git config --global --unset http.proxy

答案 1 :(得分:0)

必须结束它.git

试试这个

git clone https://github.com/jfeinstein10/SlidingMenu.git

随机git clone url的示例

https://github.com/joewalnes/websocketd.git

答案 2 :(得分:0)

好像你错误地复制了URL(它应该以.git结尾)。例如:https://github.com/xxxxx/xxxx.git

确保复制URL的全长。