创建
git init
添加文件
git add
提交
git commit -m"提交说明"
远程仓库
git remote add origin 远程仓库地址
上传
git push -u origin master