配置git
$ git config --global user.name "yemo" // 用户名和账号名一致
$ git config --global user.email "10000@qq.com" // 邮箱
查看是否配置成功
$ git config -l
添加
git add <file> // 添加到缓存区
git add . // 全部提交到暂存区
提交
git commit -m "描述" // 提交到本地库 先添加后提交
git commit -am
删除
git rm <file> // 从缓冲区删除
git rm -f <file> // 强制删除缓存区的文件ation