标签:
安装git后,进行配置
全局配置
$ git config --global user.name "Your Name" $ git config --global user.email "email@example.com"
会在 系统盘:\windows\user\用户目录 下创建 .gitconfig 文件记录配置信息
主要原理:
工作区------------缓存区-----------版本库
我们在工作区增,删,改文件
然后将文件添加到“缓存区”
一次将“缓存区”的所有内容提交到“版本库”
git status 检测“工作区”和“缓存区”的变动(增,删,改)
git add 文件名 将“工作区”的文件缓存到“缓存区”
git common -m"注释" 将“缓存区”的所有文件一次提交到“版本库”
标签:
原文地址:http://www.cnblogs.com/gameshan/p/4608145.html