git 使用

# 下面是简单的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
原文地址:https://www.cnblogs.com/zhangchen-sx/p/10859989.html