1、设置姓名和邮箱地址
运行Git Bash,进行如下操作:
$ git config --global user.name "your name" //输入英文名字,然后按回车
$ git config --global user.email "your_email@email.com" //输入邮箱地址,然后按回车
通过 $ git config --list 可查看配置列表
姓名和邮箱的配置文件保存在 .gitconfig 文件中
2、提高命令输出的可读性
$ git config --global color.ui auto
3、设置 SSH Key
$ ssh-keygen -t rsa -C "your_email@email.com" //按回车
会显示以下信息
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/tao1024/.ssh/id_rsa): //此处按回车
Enter passphrase (empty for no passphrase): //输入密码
Enter same passphrase again: //再次输入密码
最后会生成两个文件:id_rsa文件是私有密钥,id_rsa.pub是公开密钥
4、向GitHub中添加公开密钥
1)注册一个GitHub账户
2)登陆GitHub账户
3)点击右上角的Settings
4)选择SSH and GPG keys菜单,点击 New SSH key
4)