0%

Git本地环境搭建

下载安装Git

https://git-scm.com/downloads

配置用户名和邮箱

1
2
git config --global user.name "XXX"
git config --global user.email "[email protected]"

注:此用户名和邮箱是 git 提交代码时用来显示你身份和联系方式的,并不是 GitHub 用户名和邮箱。

查看命令

1
2
git config user.name
git config user.email

配置SSH秘钥

1、运行 Git Bash

2、生成秘钥对

查看是否存在秘钥,windows秘钥存放位置:

1
C:/Users/用户名/.ssh

3、生成秘钥

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

一路Enter就行,公钥位置为

1
C:/Users/用户名/.ssh/id_rsa.pub

4、添加公钥到github仓库

复制公钥内容

1
cat ~/.ssh/id_rsa.pub

登陆GitHub 帐户,点击右上角的头像,然后

Settings -> 左栏点击 SSH and GPG keys -> 点击 New SSH key -> 然后你复制上面的公钥内容,粘贴进“Key”文本域内。title域,自己随便起个名字。 -> 点击 Add key。

测试key是否生效

1
ssh -T [email protected]

看见以下就是成功:

Hi XXX! You've successfully authenticated, but GitHub does not provide shell access.