git status //检查提交状态
git status On branch master //检查分支
git branch //查看分支
git add * //添加所有本地更新
git commit -m "你要提交的更新信息" //提交到本地仓库
git push origin master //提交到服务器仓库