如何将本地的代码上传到github?
1.在github的your profile中create a new repository
2.选中要上传的文件夹git bash here
3.git init(文件夹加入git管理)
4.git add .(文件夹全部内容添加到git)
5.git commit -m "first commit"(添加说明)
6.git remote add origin https://github.com/Githubxinwei/webapp.git(git remote add origin 你自己的https地址,连接你的github仓库)
7.git push -u origin master(上传项目到github,这里会要求输入github账号和密码)