git提交 1.查看跟踪状态 git status 2.将未跟踪的文件添加进去 git add . //添加所有文件 git add index.html //添加某个指定文件 3.再次查看跟踪状态后提交 git commit -m '备注'