Git安装与配置
9374 2022/10/15 Git
# 安装
- windows 直接从官网网站下载安装包即可
- mac
- intel 安装homebrew 然后执行
brew install git
即可 - m1 m1需要安装arm的homebrew
- intel 安装homebrew 然后执行
# 创建密钥
查看是否已配置
- mac
cd ~/.ssh //进入ssh目录
1
- windows 一般在c盘 用户 当前登录用户名下的.ssh文件夹内(请打开查看隐藏文件不然有也看不到.开头的隐藏文件夹)
例如C:\Users\admin\.ssh\
- 如果不能进入该目录,说明没生成过请重新创建密钥。
- 如果ssh文件夹中有id_rsa,id_rsa.pub,说明之前生成过ssh 秘钥,可以直接使用
# 创建
说明:命令中的email,就是github中的账号,需要保持一致
#直接Enter就行,然后会提示输入密码(可输可不输)
ssh-keygen -t rsa -C "your_email@youremail.com"
#
# 1 Generating public/private rsa key pair.
# 第2条:秘钥存储的位置,建议不要修改位置
# 2 Enter file in which to save the key (/home/you/.ssh/id_rsa):
# 3 Created directory '/c/Users/Administrator/.ssh'.
# 第4/5条:秘钥口令密码,建议不设置,直接回车
# 4 Enter passphrase (empty for no passphrase):
# 5 Enter same passphrase again:
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
执行完成之后,在.ssh 目录下就会生成秘钥文件(没有.ssh目录的会自动生成,手动创建的则不会重复生成)
# 配置
配置账户
git config --global user.name "account name" //用户名,建议拼音或英文
git config --global user.email "account email" //邮箱地址
1
2
3
4
2
3
4
生成密钥
ssh-keygen -t rsa -C "account email" //上面的邮箱地址 注意这儿的空格 “ssh-keygen”
1