Article
Mac下安装Git的方法
00 分钟
2019-7-7
2023-5-21
type
status
category
date
slug
summary
tags
icon
Last edited time
May 21, 2023 07:57 AM

一、安装GIt

终端输入
git
如果安装过了会显示
如果没有可以通过homebrew安装Git
brew install git

二、创建ssh key 配置git

  1. 设置username和email
    1. 通过终端命令创建ssh key
      1. ssh-keygen -t rsa -C"[email protected]"
    1. 确认路径和输入密码
      1. 会生成key
        1. 登录GitHub,添加ssh key
            • 点击settings
            • 点击SSH and GPG keys
            • 点击new ssh keys
            • title随便填 ,key填/用户/edisonhuang/.ssh/id_rsa.pub中的数据
        1. 验证链接
          1. 终端会输出

        评论