白小兔的小小站

既然选择了远方,便只顾风雨兼程

0%

CentOS7:yum安装Git

很多时候需要在服务器上安装Git环境,以便实现服务的自动部署。其实无论Windows还是Linux,安装Git都不复杂。

安装

  1. yum安装

    yum install git -y

  2. 测试

    git --version

配置

git config --global user.name "example"

git config --global user.email "[email protected]"

SSH

  1. 创建本地SSH密钥

    ssh-keygen -t rsa -C "[email protected]"

    交互输入时,使用默认配置。

  2. 将本地SSH公钥添加到GitHub(或其他Git平台)的SSH Keys中

    vi .ssh/id_rsa.pub

    将内容复制出来,填写到Git平台。

  3. 检验SSH配置是否成功

    ssh [email protected]

    此处会与你确认是否继续,输入yes,然后github.com会自动添加进机器的known hosts中,成功回显如下:

    PTY allocation request failed on channel 0
    Hi leuncle! You’ve successfully authenticated, but GitHub does not provide shell access.

  4. 使用SSH协议克隆项目

    git clone git:*//github.com/example/xxx.git