标签:git
git status查看本地仓库的状态,比如新增了哪些文件,修改了哪些文件
git checkout 恢复文件到之前的状态(危险操作,将会丢失该文件的修改)
git add . 将新修改的内容merge到本地仓库
git commit -m "this is new update" 把新修改的内容提交至本地仓库
注意上面都是操作的本地仓库
下面命令把本地仓库push到远端服务器:
git push origin master
标签:git
原文地址:http://1038741.blog.51cto.com/1028741/1749965