从centos 6.5卸载git,并在指定位置安装它

时间:2016-04-07 11:25:07

标签: git centos6

我从https://github.com/git/git/releases下载了git 2.8.1 tar.gz软件包,并安装了它:

# tar -zxvf git-2.8.1.tar.gz
# cd git-2.8.1
# make
# make install

它运作成功!但我不知道它的位置,所以我想卸载git,并将其安装在指定的位置。我的OS版本是CentOS 6.5 64bit,我该怎么办?

1 个答案:

答案 0 :(得分:0)

<Directory /var/www/html/> Options Indexes FollowSymLinks MultiViews # AllowOverride None (Old value) AllowOverride All #(New Value) Order allow,deny allow from all # Uncomment this directive is you want to see apache2's # default start page (in /apache2-default) when you go to / #RedirectMatch ^/$ /apache2-default/ </Directory> 命令的输出包含有关安装make install的位置的信息。如果查看git,您会发现Makefile变量标识的默认安装位置是您的主目录:

prefix

prefix = $(HOME) 进程会将文件安装到make install的子目录中,例如可执行文件的$(prefix)或手册页的$(HOME)/bin

您可以通过在$(HOME)/share/man命令行上为prefix指定新值来选择其他安装位置。 E.g:

make install