这篇不想写了,直接看http://www.cnblogs.com/Chenshuai7/p/5486278.html
简单说,就是先在GitHub上点击create repository按钮
在项目目录下打开Git Bash
首先配置自己的身份,这样在提交代码的时候就能知道是谁提交的
输入git config --global user.name "名字"
git config --global user.email "邮箱地址"
git init
git add .
git commit -m "First commit"
输入GitHub给你的推送地址
git push origin master
输入GitHub用户名和密码
等待推送完成