提交
1.提交当前工作空间的修改内容
git add .
2.提交当前工作空间的修改内容
git commit -m "备注"
3.将本地commit的代码更新到远程版本库中
3.1.git push origin master
3.2.git push origin master -f 强制提交
-拉取
git pull origin master