博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux中升级git到1.8.3版本方法
阅读量:6163 次
发布时间:2019-06-21

本文共 953 字,大约阅读时间需要 3 分钟。

hot3.png

    我的Linux安装的是Centos6.4,昨天在系统里使用yum安装了git,可是在往git@osc上push代码的时候,报出了错误,社区里有人说需要升级git到1.8.3版本以上,于是就搜索到了这么一个方法,挺好用的,我在这里mark一下,以便以后用到的时候拿出来,嘿嘿。

1. Download PUIAS repo:

wget -O /etc/yum.repos.d/PUIAS_6_computational.repo https://gitlab.com/gitlab-org/gitlab-recipes/raw/master/install/centos/PUIAS_6_computational.repo

2. Next download and install the GPG key:

wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-puias http://springdale.math.ias.edu/data/puias/6/x86_64/os/RPM-GPG-KEY-puias && rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-puias

3. Verify that the key was installed successfully:

rpm -qa gpg*

4. Verify that the EPEL and PUIAS Computational repositories are enabled:

yum repolist

5. Install Git 1.8

yum --enablerepo=PUIAS_6_computational install git

Note: I am not quite happy with this solution, as it only netted me Git 1.8.3 however I do not have the time to find a better solution right now.

学PHP的小蚂蚁 原创博客 

转载于:https://my.oschina.net/woshixiaomayi/blog/534430

你可能感兴趣的文章
Eclipsed的SVN插件不能识别之前工作空间的项目
查看>>
Linux 查看iptables状态-重启
查看>>
amazeui学习笔记一(开始使用2)--布局示例layouts
查看>>
c#中lock的使用(用于预约超出限额的流程)
查看>>
ODI基于源表时间戳字段获取增量数据
查看>>
并发容器之CopyOnWriteArrayList(转载)
查看>>
什么是AAC音频格式 AAC-LC 和 AAC-HE的区别是什么
查看>>
原创:goldengate从11.2升级到12.1.2
查看>>
Quartz
查看>>
正则表达式的语法规则
查看>>
C#一个关于委托和事件通俗易懂的例子
查看>>
类似于SVN的文档内容差异对比工具winmerge
查看>>
Cause: java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
查看>>
quratz线程
查看>>
execnet: rapid multi-Python deployment
查看>>
windows修改3389端口
查看>>
关于JavaScript词法
查看>>
FreeSwitch中的会议功能(4)
查看>>
MySQL中创建用户分配权限(到指定数据库或者指定数据库表中)
查看>>
AutoReleasePool 和 ARC 以及Garbage Collection
查看>>