1、 echo "hello" > welcome.txt //创建文本,内容为hello
2、 git add welcome.txt //添加文本到版本库
3、 git commit -m "initialized" //添加注释
4、 git log --stat //查看提交日志
5、 git reset --soft head^ //重置命令放弃最新的提交
6、 git reset head welcome.txt //将welcome.txt 撤出暂存区
7、 git checkout -- welcome.txt //将本地工作区welcome.txt的所有修改清除。
8、 git clean -nd //检查会删除工作区那些多余的目录和文件
9 、git clean -fd //开始强制删除