Unable to find remote helper for 'https'

出現這個報錯,說明git目前的狀態是正常的,要麼沒裝好,要麼本身解決壓縮安裝致使沒有權限html

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

 

 

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

 

系統是centos5centos

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

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

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

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

 

 

 使用Git遠程獲取代碼code

 

[plain]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. git clone https://github.com/twlkyao/findfile.git  

 

    出現「fatal: Unable to find remote helper for 'https'」(這是由於Git環境在重裝後沒有安裝徹底,須要從新安裝),可暫時使用git代替https,使用以下命令:htm

 

[plain]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. git clone git://github.com/twlkyao/findfile.git  

 

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

    切換到代碼目錄:

 

[plain]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  1. cd /opt/git-1.8.1.2/  

    而後按照INSTALL中的說明設置安裝前綴(通常使用root安裝):

 

 

[plain]  view plain  copy
 
 print?在CODE上查看代碼片派生到個人代碼片
  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?在CODE上查看代碼片派生到個人代碼片
    1. # make install  

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

相關文章
相關標籤/搜索