如何用命令将git bash更新到最新版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用命令将git bash更新到最新版本相关的知识,希望对你有一定的参考价值。
参考技术A PS1='`git status | grep 位于分支|cut -d " " -f 2`'把`xxx`的命令加入PS1
Linux将 Git 更新至最新版本(yum)
引言
Centos 7 服务器上默认安装的 Git 是 1.8.3.1 版本的,用 VSCode 远程连接服务器时,一直提示我更新到 2.x
版本。
卸载
首先,把老版本的 Git 卸掉。
sudo yum -y remove git
sudo yum -y remove git-*
安装
- 添加 End Point 到 CentOS 7 仓库
sudo yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
- 安装 Git
sudo yum -y install git
- 查看安装后的 Git 版本、
$ git version
git version 2.36.0
参考
以上是关于如何用命令将git bash更新到最新版本的主要内容,如果未能解决你的问题,请参考以下文章