Git是开源的**分布式**版本控制系统,是Linus Torvalds为维护Linux内核开发的代码管理工具,不需要服务器端软件支持。
- 下载Git并安装
- 创建新仓库
创建新文件夹,然后在当前文件夹下执行git init - 检出仓库
git clone path - 常规使用
本地仓库(local repository,三棵树)
工作目录,working dir:持有实际文件
暂存区,index:临时保存改动 - git add *
HEAD:最后一次提交 - git commit -m “comment”
推送到远端仓库(remote repository)
git push origin master
git remote add origin server
分支 - git checkout
更新 - git pull
合并 - git merge
标签- git tag