網頁

2013年7月19日 星期五

CentOS筆記-安裝GIT

CentOS 5:
>yum install git

發現沒有GIT,只好自行下載,大概步驟如下:
>wget https://git-core.googlecode.com/files/git-1.7.11.1.tar.gz
>tar zxvf git-1.7.11.1.tar.gz
>cd git-1.7.11.1
>yum install zlib-devel openssl-devel cpio expat-devel gettext-devel
>./configure
>make
>make install


測試一下能不能用,打入
>git --verion

可以看到GIT的版本,不過我實際使用是從網路上取得,打上git clone https://xxx.com/xxx/new.git
卻出現:fatal: Unable to find remote helper for 'https'

查了下發現可能是curl的問題,所以GIT要再compile進curl,指令如下:
>yum install curl*
>cd git-1.7.11.1
>./configure
>make


再輸入git clone https://xxx.com/xxx/new.git,發現可以取得code了

CentOS 6:yum上面有git可用
>yum install git


參考網址:
Centos 5.8 install your own git server
repo下载android出现fatal: Unable to find remote helper for 'https'问题的方法
git clone: fatal: Unable to find remote helper for 'https'

沒有留言:

張貼留言