2015年第九期git学习
#资料 ##在线地址 http://ke.qq.com/course/103151 ##课件地址 http://school.zhufengpeixun.cn/course/31 ##github网址 https://github.com/ ##Win8显示隐藏文件的方法 http://jingyan.baidu.com/article/066074d68ddc7cc3c21cb082.html
#安装git
#配置git
git config --global user.name "zfpx"
git config --global user.email "[email protected]"
git config --global --list
#创建git仓库
mkdir gitstudy
cd gitstudy
git init
#显示隐藏目录
ls -al