step1:终端cd 进入本地项目目录
step2:git init
step3:git add .
step4:git commit -m "xxxxx" 至此git本地仓库创建完毕
step5:ssh -keygen -t rsa -C "xxxxx@xxxx.com"
step6:登录github帐号,进入setting,选择SSH and GPG keys,复制刚才生成的id_rsa.pub文件内容到内容框中
step7:在github上为你的项目创建profile,并且复制生成的网址
step7:cd 进入本地项目目录
step8:git remote add origin https://github.com/xxxx/xxxxx.git(刚才复制的网址)
step9:git push -u origin master 至此提交远程仓库结束。1分钟后可以在Github 上看到自己提交的代码