git尝试使用
再不用git就tmout了
参考手册http://www.linuxgem.org/user_files/linuxgem/Image/git-tutor.pdf
进如随便一个目录
git init
在当前目录就生成了 .git目录
echo "haha" >text.txt
git add .
git commit
随便写点log,不要写在注释里
git log
git log --stat --summary
比如下载nginx的源码
mkdir ngx_openresty
git clone https://github.com/agentzh/ngx_openresty ngx_openresty/