1. 初始化项目
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/xxx/xxx.git
git push -u origin master
2. 添加项目
添加到本地仓库
git add .
添加提交描述
git commit -m '内容'
提交前先从远程仓库主分支中拉取请求
git pull origin master
把本地仓库代码提交
git push -u origin master