# 下面是简单的git使用
# 第一次推到Git上面git init git add README.md git commit -m "first commit" git remote add origin https://github.com/zhangc0/shanxi.git git push -u origin master
# 修改项目后推 git add . git commit -m '本次你干嘛了' git push origin master