Git
Git
小uSVN
- SVN(Subversion),集中式版本控制系统,CVS(Concurrent Versions System)的替代产物
- 下载仓库资源 checkout、修改/提交 commit 仓库资源、同步 update 仓库资源
Git
- 分布式版本控制系统
- Reference Manual(opens new window)
- Pro Git book(opens new window)
- Git Cheatsheet(opens new window)
Git 常用命令
- Workspace:工作区
- Index / Stage:暂存区
- Repository:仓库区(或本地仓库)
- Remote:远程仓库
用户配置
- git config –global user.name “Your Name”:全局配置用户名
- git config –global user.email “email@example.com“:全局配置邮箱
- git config –global alias.plm ‘pull origin master’:设置别名
- git config –global core.editor notepad:设置默认编辑器
- 配置级别
- –local:默认,高优先级,只影响本仓库,保存目录 .git/config
- –global:中优先级,影响到所有当前用户的git仓库,保存目录 ~/.gitconfig
- – system:低优先级,影响到全系统的git仓库,保存目录 /etc/gitconfig
基本操作
- git init:在当前目录下初始化仓库(–bare,纯版本库,没有工作目录)
- git add readme.txt:把文件添加到暂存区(同时文件被跟踪)
- git commit -m “wrote a readme file”:提交到本地仓库
- git commit –amend -m “new commit message”:将暂存区中的文件提交以修改最后一次提交的内容,或修改最后一次提交的提交说明
- git log –pretty=oneline:查看提交日志
- git reflog:查看提交日志(包括已经撤销的提交,即 HEAD 移动的记录)
- git log –color –graph –pretty=format:’%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)