Unable to find remote helper for 'https'


出現這個報錯,說明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?在CODE上查看代碼片派生到我的代碼片
  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?在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

不錯


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM