出現這個報錯,說明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遠程獲取代碼
- git clone https://github.com/twlkyao/findfile.git
出現“fatal: Unable to find remote helper for 'https'”(這是因為Git環境在重裝后沒有安裝完全,需要重新安裝),可暫時使用git代替https,使用如下命令:
- git clone git://github.com/twlkyao/findfile.git
這里將使用代碼安裝進行介紹:
切換到代碼目錄:
- cd /opt/git-1.8.1.2/
然后按照INSTALL中的說明設置安裝前綴(一般使用root安裝):
- $ make prefix=/usr all doc info ;# as yourself
- # make prefix=/usr install install-doc install-html install-info ;# as root
然后執行make install
- # make install
http://blog.csdn.net/twlkyao/article/details/16974477
不錯