1.在本地安装git(win10参考:https://jingyan.baidu.com/article/b24f6c821e9c8f86bfe5daa6.html)
2.打开git bash配置用户名和邮箱
git config --global user.name "yourname"
git config --global user.email "youremail"
可以使用 git config --list查看当前所有的配置
3.在github上创建自己的账号
4.创建SSH Key
a:打开Git Bash,输入pwd查看当前路径
b.输入ssh-keygen -t rsa –C “youremail@example.com”
(输入完毕后程序同时要求输入一个密语字符串(passphrase),空表示没有密语。接着会让输入2次口令(password),空表示没有口令。3次回车即可完成当前步骤)
在github创建私有项目,并且将本地的项目上传到github
原文:https://www.cnblogs.com/lmcm/p/14352320.html