发布时间:2011-7-18 11:19
分类名称:Version control
*.[oa]
*~
*.html
*.pdb
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支持此命令。
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 statusgit 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