windows本地第二次提交git操作
在本地仓库的路径下打开cmd
//git status 查看项目中哪些文件发生了变化
git add X (X为添加的文件)
//git status 这个时候文件都变成了 new file
git commit -am 'XXX' (X为提交文件的提示信息)
git push (提交)
在本地仓库的路径下打开cmd
//git status 查看项目中哪些文件发生了变化
git add X (X为添加的文件)
//git status 这个时候文件都变成了 new file
git commit -am 'XXX' (X为提交文件的提示信息)
git push (提交)