套餐系列: // 0: 查看一下仓库地址对不对: git remote show origin // 1: 添加当前所有修改的文件 git add . // 2: 提交并备注 git commit -m "这是我的修改备注" // 3: 提交到远程仓库 git push origin master