1、修改文件
如修改了a.txt文件,或新增了b.txt文件
2、查看状态,可看到修改和新增的文件
git status
3、添加
git add a.txt git add b.txt
4、提交
git commit -m "add"
5、上传
git push