git上传代码
https://www.runoob.com/git/git-basic-operations.html
git config --global user.name 名字
git config --global user.email 邮箱
git status //查看代码状态
git diff //查看和其他代码的差别
git add . //将修改文件添加到暂存区
git status
git commit -m "描述" // 将更改的用户和日志消息一起提交到存储中
git