1、创建github账号,连接地址:https://github.com
2、创建SSH Key,使用命令:$ssh-keygen -t rsa -C "youremail@example.com",注意:youremail@example.com,为你自己的邮箱地址。
3、登陆GitHub,打开“Account settings”,“SSH Keys”页面,点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容,,添加完成SSH Keys。
注意:id_rsa.pub文件地址,在用户主目录下,例如:C:\Users\Administrator\.ssh
4、登陆GitHub,点击New Repository,创建新库。
5、使用命令,关联本地库,$git remote add origin git@github.com:michaelliao/learngit.git,注意:michaelliao/learngit.git为你自己刚创建的库的账户和名称。
6、使用命令:$ git push -u origin master,把本地库的内容推送到远程。
7、以后推送本地修改,只需要命令:$ git push origin master
最后,刷新github的页面,查看下,是否和你的本地库是一样的。