1.Git是开源用来进行代码版本控制的系统
2.安装:http://git-scm.com/downloads
3.git工作流程
4.git分为工作区 缓存区 版本库
5.建仓
git init 将在当前目录下生成一个.git的目录
git add 此文件进入缓冲区
git commit 此文件提交到仓库中
git clone 可以从现有的仓库中拷贝项目
git clone <repo> <mei>为克隆此项目到指定的目录(repo为git仓库 mei为本地目录)
git clone git://github.com/schacon/grit.git 为克隆github平台中的grip仓库,当前目录下会创建grip目录
网友评论