参考:https://www.jianshu.com/p/108ed1e6db9a
参考:廖雪峰的git教程
本地git,对文件夹右击git bash
$ git init
config的配置
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
关联远程仓库
git remote add origin "远程仓库地址"
git pull --rebase origin master
git push -u origin master
config的修改
//查
git config --global --list
git config --global user.name
//增
git config --global --add user.name jianan
//删
git config --global --unset user.name
//改
git config --global user.name jianan
更新文件之后
git add .
git commit -m "描述"
git push -u origin
远程库更新后
git pull
即可拉取云端文件夹覆盖到本地