git源码安装过程

来源:互联网 发布:不停打电话的软件 编辑:程序博客网 时间:2024/05/19 14:34

参考源码包里的文档,列出git源码编译过程

1.下载源码包

git-2.9.4.tar.xz

2.安装

xz -d git-2.9.4.tar.xz

tar -xf git-2.9.4.tar


cd  git-2.9.4

./configure --prefix=/usr

make all doc

make install install-doc install-html

Git出现fatal: Unable to find remote helper for 'https'