1、查看哪些文件有修改
git status
2、提交所有修改的文件
git add .
git commit -m "abcdefg更新了"
git push
3、提交指定修改后文件上去
git add "test.java"
后面的跟2一样