1. 程式人生 > >Unable to find remote helper for 'https'

Unable to find remote helper for 'https'

情況 hub 沒有 目前 root one height copyto spa

出現這個報錯,說明git目前的狀態是正常的,要麽沒裝好,要麽自己解決壓縮安裝導致沒有權限

第三次情況是,使用yum install git 重新安裝後,仍然報錯,是因為環境變量中GIT_HOM配置的仍然是有問題的老http://blog.csdn.net/yanwuhuan/article/details/7412370

解決git的這個錯誤:fatal: Unable to find remote helper for ‘https‘

系統是centos5

搜了一下,要裝curl的,可是俺已經裝了啊?

卸載Git,再裝,再試,無意中發現一個提示,沒有權限執行 git-remote-https,啊哈?

找到這個文件所在目錄 /usr/libexec/git-core,加入到PATH裏頭,搞定!

http://blog.csdn.net/yanwuhuan/article/details/7412370

使用Git遠程獲取代碼

[plain] view plain copy print?技術分享技術分享
  1. git clone https://github.com/twlkyao/findfile.git

出現“fatal: Unable to find remote helper for ‘https‘”(這是因為Git環境在重裝後沒有安裝完全,需要重新安裝),可暫時使用git代替https,使用如下命令:

[plain] view plain copy print?技術分享技術分享
  1. git clone git://github.com/twlkyao/findfile.git

這裏將使用代碼安裝進行介紹:

切換到代碼目錄:

[plain] view plain copy print?技術分享技術分享
  1. cd /opt/git-1.8.1.2/

然後按照INSTALL中的說明設置安裝前綴(一般使用root安裝):

[plain] view plain copy print?技術分享技術分享
  1. $ make prefix=/usr all doc info ;# as yourself
  2. # make prefix=/usr install install-doc install-html install-info ;# as root
技術分享

然後執行make install

[plain] view plain copy print?技術分享技術分享
    1. # make install

http://blog.csdn.net/twlkyao/article/details/16974477

不錯

Unable to find remote helper for 'https'