1、文档目录下右键 Git Bash Here
2、git设置用户名与邮箱
git config --global user.name xianbinsu
git config --global user.email 65692336@qq.com
3、git init 初始化数据
4、git add * 添加当前目录下所有文档到暂存区( git config --global core.autocrlf false)
5、git status 查询文档状态(绿色文件是可以提交的文件)
6、git commit -m 备注信息 提交文档到本地主仓库
7、git push 仓库地址 master (https://github.com/xianbinsu/cv_team)