Git 之基础命令 笔记

发布时间:2011-7-18 11:19
分类名称:Version control


Git Pro最新版:http://git-scm.com/book/zh/v2 
Git 只关心数据是否整体变化,而subversion每次记录有哪些文件作了更新,已经更新了哪儿些内容。

三种状态:
1. 已提交(committed)
2. 已修改(modified)
3. 已暂存(staged)

忽略某些文件,创建一个叫 ".gitignore"的文件。

*.[oa]
*~
*.html
*.pdb


ignroe文件格式如下:
所有空行或者#开头的行都被忽略。
使用标准的glob模式匹配。(glob匹配为简化了的正则表达式)
匹配模式最后跟反斜杠,说明要忽略的是目录
可以使用取反“!”
如:
*.a         #忽略所有 .a 的文件
!lib.a        #但lib.a除外
/TODO        #仅仅忽略项目更目录下的TODO文件,不包括subdir/TODO
build/        #忽略build/目录下的所有文件
doc/*.txt    #会忽略doc/notes.txt,但不包括doc/server/arch.txt

============= Commands ================
Git 配置

git config --global user.name "dsliu"
git config --global user.email "hao.dsli@gmail.com"
git config --global core.editor vim
git config --global merge.tool vimdiff
git config --list
git config user.name


帮助信息

git help <verb>
git <verb> --help
man git-<verb>


初始化

git init

git clone git://gitthub.com/schacon/grit.git
git clone git://gitthub.com/schacon/grit.git mygrit


状态,对比

git status
git diff              # 比较当前工作状态和暂存状态的差异 (当前做的哪些更新还没有暂存)
git diff --cached     # 比较暂存状态和上次提交状态的差异(有哪些更新已经暂存起来准备好了下次提交

git diff --staged     # 同cached,高版本的git支持此命令。


#1. 使用git add跟踪新文件。
#2. 使用git add将以跟踪文件放到暂存区
#3. 使用git add将冲突文件标记为已解决状态。

git add *.c            
git add README


删除文件

git rm files
git rm --cached files
git -f files


移动文件

git mv file1 file2


显示提交信息

git log
git log -p
git log --stat
git log --pretty=oneline
git log --pretty=short
git log --pretty=full
git log --pretty=fuller
git log --pretty=format:"%h - %an, %ar : %s"
git log --pretty=format:"%h %s" --graph


提交

git commit -m "My first git project"
git commit -a -m "My first git project"
git commit --amend


取消已暂存的文件

git reset HEAD files

取消对文件的修改

git checkout -- files


远程仓库

git remote
git remote -v
git remote add pb git://git.com/tiger.git
git fetch [remote-name]

git push [remote-name] [local-branch]

git push origin serverfix

git push origin serverfix:serverfix

git remote show origin
git remote rename pb paul    


打标签

git tag #显示所有的tag
git tag -l 'v1.4.2.*' #过滤显示的tag
git tag v1.4-1w #创建标签(lightweight)
git tag -a v1.3 -m "my version 1.4" #创建标签(annotated)
git tag -a v1.4 9fceb02 #对过去的提交打标签
git tag -s v1.5 -m "my version 1.5" #签名
git tag -v v1.5 #验证签名
git show v1.4 #显示标签信息
git push origin v1.5 #推送标签到远程仓库
git push origin --tags #推送所有的标签到远程仓库


别名

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status

git config --global alias.unstage 'reset HEAD --'
git unstage fileA

分支

git branch testing # 创建分支
git checkout testing # 检出分支
=> git checkout -b testing # 一条命令搞定

git checkout master
git merge hotfix #合并hotfix到master
git branch -d hotfix #删除hotfix分支


git mergetool

git branch #显示所有本地分支
git branch -v #显示每个分支名称和对应的最后一次提交
git branch --merged #查看哪些分支已经合并到当前分支
git branch --no-merged #查看所有包含未合并工作的分支
git branch -D testing #强制删除分支

git checkout -b serverfix origin/serverfix #用于工作的本地分支,并且起点位于:远程分支 origin/serverfix

git checkout --track origin/serverfix #同上面的操作

git branch -u origin/serverfix #设置已有的本地分支跟踪一个刚刚拉取下来的远程分支,或者想要修改正在跟踪的上游分支

git push origin --delete serverfix #删除远程分支

git branch -vv                                   #显示所有跟踪分支


===============================================

git rebase master