github基础操作

1.最简单实用的操作

更新远程仓库
git status
git add .
git commit -m "add"
git push
#git push -u origin master
更新本地仓库
git pull
原文地址:https://www.cnblogs.com/spjy/p/7085416.html