登录 注册
当前位置:主页 > 资源下载 > 9 > 在Linux系统中搭建Git服务器

在Linux系统中搭建Git服务器

  • 更新:2024-06-26 08:03:50
  • 大小:215KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Linux - 操作系统
  • 格式:DOCX

资源介绍

[root@www downloads]# Wget http://git-core.googlecode.com/files/git-1.7.9.tar.gz [root@www downloads]# tar -xlvf git-1.7.9.tar.gz [root@www downloads]# cd git-1.7.5.4 [root@www downloads]# ./configure --prefix=/usr/local/ (使用--prefix参数指定Git的安装路径,git默认的命令都安装在/usr/local/bin目录下,因此如果这里指定的目录非/usr/local/那么如果不设置相应的环境变量git将不可用。因此,尽量指定这个安装路径)