Linux 安装git

作者: 席坤 | 来源:发表于2019-09-16 11:18 被阅读0次
  • 删除系统自带的git
yum remove git
wget https://github.com/git/git/archive/v2.21.0.tar.gz
  • 安装依赖
yum -y install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker
  • 解压
tar -zxvf v2.21.0.tar.gz
  • 进入解压目录
cd git-2.21.0/
  • 编译
make prefix=/usr/local/git all
  • 安装
make prefix=/usr/local/git install
  • 编辑环境配置文件
vim /etc/profile
# 末尾添加
export PATH=/usr/local/git/bin
  • 使之生效
source /etc/profile
  • 查看git版本
git --versiob
  • 全局配置用户名
git config --global user.name "nameVal"
  • 全局配置邮箱
git config --global user.email "eamil@qq.com"
  • 配置编码
 git config --global core.autocrlf false
 git config --global core.quotepath false 
 git config --global gui.encoding utf-8

git 公钥配置

  • 在终端输入
ssh-keygen -t rsa -C "xx@163.com"
  • 一路回车,不要输入任何密码之类,生成ssh key pair
  • ssh-add ~/.ssh/id_rsa

如果出现 Could not open a connection to your authentication agent.

  • 执行
 eval `ssh-agent`

出现

Agent pid 14578
  • 再执行
ssh-add ~/.ssh/id_rsa

此时出现

Identity added: /root/.ssh/id_rsa (/root/.ssh/id_rsa)
  • 查看公钥
cat ~/.ssh/id_rsa.pub

出现的一串字符串填入git

此时可以使用 SSH 克隆代码

git clone git@github.com:xxx/xxx.git

相关文章

  • Git 系列教程(二)Git 安装与配置

    Git 系列教程(二)Git 安装与配置 1. Git 的安装 在 Linux 上安装 如果你想在 Linux 上...

  • 编写自动化脚本部署jar包

    查看是否安装git 没有安装参考 linux Git 安装 查看是否安装Manen 没有安装参考 linux No...

  • git使用的“初始化”

    一、本地平台安装运行git (一)、Linux上安装git: 为什么要学习在Linux上安装git:最早git是在...

  • 01 Git基础

    Git的安装 Linux安装 sudo apt-get install git Windows安装 (略)Git ...

  • 前端自动化打包部署nginx目录下

    查看是否安装git 没有安装参考 linux Git 安装 查看是否安装node+npm 没有安装参考 linux...

  • Git安装

    Git安装 (1)Linux安装 (2)Windows安装 Git 配置 Git 提供了一个叫做 git conf...

  • Vue部署

    linux服务器安装 安装gityum install git查看安装: git --version 安装ngin...

  • LINUX 下安装git 超详细(转载)

    Linux安装git (git-2.11.0) 本文旨在讲述如何在linux上安装最新版的git。 1、查看当前g...

  • git 服务器搭建

    1. 安装git ubuntu 安装 $ sudo apt-get install git linux yum安装...

  • github

    linux git:查看是否已经安装 sudo apt-get install git :安装 git init:...

网友评论

    本文标题:Linux 安装git

    本文链接:https://www.haomeiwen.com/subject/ujmxuctx.html