首页 > 系统相关 >ubuntu 18.04 git2.17.1升级 2.41

ubuntu 18.04 git2.17.1升级 2.41

时间:2023-08-18 13:24:03浏览次数:49  
标签:2.41 git 版本 18.04 sudo apt cache https git2.17

默认安装版本

image


一、添加 git 官方源

sudo add-apt-repository ppa:git-core/ppa

根据提示 回车继续
image


二、更新仓库包索引

sudo apt update

不更新,即便 git 官方有更新,你也搜索不到


三、查看有什么软件可以更新

apt list --upgradable

可以看到左边红箭头,显示是最新的 git 2.41,而右边箭头是系统里装的 2.17.1 版本
image


四、安装最新版本

sudo apt-get install git

安装最新版本后:
Ubunt:
image
Window:
image


五、安装指定版本

sudo apt-get install git=2.22

一些可用版本号:

2.15.1
2.18
2.28
2.30
2.39.1


六、apt-cache 列出你系统里可安装版本

1.apt-cache madison

sudo apt-cache madison git

image


2.apt-cache policy

sudo apt-cache policy  git

image


七、如果二进制没有想要的版本,可以用源码编译安装

https://blog.csdn.net/qq_27061049/article/details/130202387





参考、来源:
http://www.taodudu.cc/news/show-6238481.html?action=onClick
https://codeleading.com/article/14053817028/
https://blog.csdn.net/rookie_wei/article/details/122409853
https://blog.csdn.net/xuchaoxin1375/article/details/124586717
https://blog.51cto.com/wst021sh/5087544



标签:2.41,git,版本,18.04,sudo,apt,cache,https,git2.17
From: https://www.cnblogs.com/wutou/p/17640216.html

相关文章

  • Ubuntu18.04 切换内核版本
    安装内核sudosed-i'$a\debhttps://mirrors.ustc.edu.cn/ubuntu/bionic-proposedmainrestricteduniversemultiverse\​deb-srchttps://mirrors.ustc.edu.cn/ubuntu/bionic-proposedmainrestricteduniversemultiverse\'/etc/apt/sources.listsu......
  • WSL(ubuntu18.04)下编译glibc-2.27
    一、简介本文主要介绍在Windows平台上的WSL中编译glibc-2.27,步骤不难,主要是版本需要注意,不能随意匹配版本。二、准备工具需要先在微软商店安装ubuntu18.04,并安装cmake,gcc,详细步骤可参考之前的博客——https://www.cnblogs.com/Clark-Zhang/p/16309189.html。三、详细......
  • Ubuntu18.04 配置
    一、环境系统:ubuntu-18.04.6-desktop-amd64.isoVMware:17二、SSH服务1.更新源2.安装openssh3.配置sshgedit1vi/etc/apt/sources.list23debhttps://mirrors.tuna.tsinghua.edu.cn/ubuntu/bionicmainrestricteduniversemultiverse4debhttps://mirrors.tuna.ts......
  • Ubuntu18.04 安装Opencv3.4.15、PCL1.8.1、VTK7.1.0、Eigen3.4、Pangolin0.6、Sophus
    Eigen3.4安装方法mkdirbuild&&cdbuildcmake..sudomakeinstall安装后头文件安装在/usr/local/include/eigen3/,可以打开看一看安装的库Pangolin0.6安装方法+安装依赖项目sudoapt-getinstalllibglew-devsudoapt-getinstalllibboost-devli......
  • ubuntu18.04 使用netplan配置静态IP
    1.cd/etc/netplan2.sudovim/etc/netplan/*.yamlnetwork:ethernets:enp0s3:dhcp4:falseaddresses:[192.168.10.45/24]#静态IPv4gateway4:192.168.10.255#网关nameservers:addresses:[119.29.29.29]#DNS地......
  • vnc Ubuntu18.04~Ubuntu22.04安装并配置
    原文链接:Ubuntu18.04~Ubuntu22.04安装并配置VNC(yii666.com) 文章目录前言一、VNC是什么?二、系统环境1.前提2.打开Share开关3.安装x11vnc4.测试1.使用方法2.重要补充总结 前言有些操作需要Desktop环境而又不方便去现场看的这个方法能够满足你的需......
  • ubuntu18.04安装nodejs最新版、指定版 12.x 14.x
    ubuntu18.04安装nodejs最新版、指定版12.x14.x 今天准备在ubuntu服务器里面安装nodejs版本,ubuntu18.04仓库nodejs默认是8.x版本。1.通过apt安装nodejs在Ubuntu18.04的默认仓库包含了一个Node.js的版本,截至当前,该仓库的node.js版本是8.10.0。要安......
  • docker-部署Jenkins-2.410
    Jenkins构建及安装https://doc.czy21.com:8443/docker/jenkins/jenkins-ssh-agent构建及安装,提升ci效率https://doc.czy21.com:8443/docker/jenkins-ssh-agent/......
  • Ubuntu18.04离线安装cuda,docker和nvidia-docker
    近来接手一个项目,服务器没有外网,还缺少一堆基础工具,离线安装相关依赖十分头疼。在此两篇博客记录一下此次经历。各部件的依赖如下:Nvida-docker需要CUDA驱动,安装CUDA需要GCC编译库,安装GCC需要用到make工具(make非必须)有关GCC依赖与make工具安装,请看另一篇博客。目录1.离线安装......
  • ubuntu18.04、ubuntu20.04桌面版换国内源
    ubuntu18.04、ubuntu20.04桌面版换国内源一、ubuntu18.04换源1.备份原始源文件source.list2.修改源文件二、ubuntu20.04换源三、其他换源方法安装好ubuntu18.04或ubuntu20.04后,软件更新默认使用国外源,在国内更新时速度很慢,所以需要更换成国内源,这样软件的更新和安装才......