博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu git upgrade(reprint)
阅读量:5908 次
发布时间:2019-06-19

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

reprint from:http://www.360doc.com/content/12/0228/13/5962017_190255288.shtml

If you use Git a lot, you probably want to run the latest version.

The standard repository version for Ubuntu is 1.7.1, the current latest is 1.7.5 and there are some significant differences.
How to Upgrade Git
To get 1.7.5 on Ubuntu without too much messing about you can do the following:
1. Set up this PPA:
    sudo add-apt-repository ppa:pdoes/ppa/ubuntu
2. Now run an aptitude update and upgrade git
    sudo apt-get update
    sudo aptitude upgrade git
3. Now check your git version
    git --version
Full Script for the lazy

    sudo add-apt-repository ppa:pdoes/ppa/ubuntu && sudo apt-get update && sudo aptitude upgrade && git --version

转载于:https://www.cnblogs.com/xhj-records/archive/2013/05/04/3060102.html

你可能感兴趣的文章
Go -- 在Go语言中使用JSON struct
查看>>
mariaDB安装完成后设置root密码等初始化操作
查看>>
STL入门
查看>>
ThreadLocal对象使用过程中容易陷入的坑
查看>>
清空git缓存
查看>>
TCP三次握手建立关系
查看>>
零元学Expression Blend 4 - Chapter 36 来玩捉迷藏吧!!!看看ScrollBar的Disabled与Hidden之差异...
查看>>
Web Components 是什么
查看>>
2017中国私募基金峰会第三批参会机构公布
查看>>
Oracle的sqlnet.ora文件配置
查看>>
子查询的另一种方式——映射
查看>>
【Django】 rest-framework和RestfulAPI的设计
查看>>
Python pass 语句
查看>>
Ubuntu镜像文件下载
查看>>
线程池的启动策略
查看>>
使用sql语句创建修改SQL Server标识列(即自动增长列)
查看>>
白鹭引擎 - 显示对象与 HelloWord ( 绘制了一个红蓝相间的 2 x 2 格子 )
查看>>
Data Binding Android - Type parameter T has incompatible upper bounds : ViewDataBinding and MainAct
查看>>
nuget.org 无法加载源 https://api.nuget.org/v3/index.json 的服务索引
查看>>
CentOS 7 搭建基于携程Apollo(阿波罗)配置中心单机模式
查看>>