我无法访问RHEL6 repo,那么在RedHat Enterprise Linux 6上构建和/或安装git-svn工具的最佳方法是什么?
管理安装git& git-svn 1.7.9卸载现有的(yum erase git)并从源代码安装最新版本。也是64位工作。
答案 0 :(得分:1)
一种可能的解决方案是在本地重建(即在主目录中的目录中)所有内容:
git
及其依赖项svn
及其依赖项perl
和ruby
(由git-svn
脚本使用)您可以尝试我的GitHub project compileEverything:
(它将为您下载并编译所有必要的资源:无需配置)
cd ~
bash # (you need a bash session)
# set your http_proxy/https_proxy if needed
wget --no-check-certificate https://github.com/VonC/compileEverything/tarball/master
tar xpvf master
cd compil*
./maken-env.sh -title=test
# wait 4 hours
source .bashrc -force # special bash with all the right local path
git
和git-svn
将有效。