创建版本库

  • git init # 初始化本地版本库
  • git clone <url> # 克隆远程版本库

安装配置

git config --global user.name "Your Name"
git config --global user.email your.email@example.com
git config --global color.ui true  	#  git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto

添加 .gitignore 文件,输入过滤文件以及文件夹

修改和提交

  • git status # 查看当前版本状态
  • git diff # 查看变更内容
  • git add . # 增加当前子目录下所有更改过的文件至index
  • git add <file> # 跟踪指定的文件
  • git mv <old> <new> # 文件改名
  • git rm <file> # 删除文件
  • git rm --cached <file> # 停止跟踪文件但不删除
  • git commit -m “commit message” # 提交所有更新过的文件
  • git commit --amend # 修改最后一次提交
  • git commit --amend -m 'message' # 合并上一次提交(用于反复修改)

查看提交历史

  • git log # 查看提交历史
  • git log -<number> # 查看行数
  • git log -p <file> # 查看指定文件的提交历史
  • git blame <file> # 以列表方式查看指定文件的提交历史
  • git log --stat # 显示提交日志及相关变动文件
  • git show <hash> # 使用 comment ID 前几位来查看变动
  • git show HEAD # 显示HEAD提交日志
  • git show HEAD^ # 查看 len(^)提交的日志
git log --graph --date=short --pretty=format:'%C(auto)%h %d %s (%Cgreen%an%Creset) %Cblue%ad%Creset' --all

撤消

  • git reset --hard HEAD # 撤消工作目录中所有未提交文件的修改内容
  • git checkout HEAD <file> # 撤消指定的未提交文件的修改内容
  • git revert <commit> # 撤消指定的提交

分支与标签

  • git branch # 显示所有本地分支
  • git checkout <branch/tag> # 切换到指定分支或标签
  • git branch <new-branch> # 创建新分支
  • git branch -d <branch> # 删除本地分支
  • git tag # 列出所有本地标签
  • git tag <tagname> # 基于最新提交创建标签
  • git tag -a <tagname> -m "message" # 提交冰追加标签
  • git tag -d <tagname> # 删除标签
  • git show <tag> 显示日志
  • git log <tag>

合并与衍合

  • git merge <branch> # 合并指定分支到当前分支
  • git rebase <branch> # 衍合指定分支到当前分支

远程操作

  • git remote -v # 查看远程版本库信息
  • git remote show <remote> # 查看指定远程版本库信息
  • git remote add <remote> <url> # 添加远程版本库
  • git fetch <remote> # 从远程库获取代码
  • git pull <remote> <branch> # 下载代码及快速合并
  • git push <remote> <branch> # 上传代码及快速合并
  • git push <remote> :<branch/tag-name> # 删除远程分支或标签
  • git push --tags # 上传所有标签

技巧

打包 diff 文件

  • git diff 762f97cf b2e7e3f342 --name-only|xargs zip update.zip 打包两个提交的差异

alias

在 git 配置文件 ~/.gitconfig 中使用 alias 来做命令别名。 比如 git lg 就可以打印 git log定制的命令。

[user]
	email = 
	name = 
[core]
	excludesfile = ~/.gitignore_global
[log]
	date = format:%w %Y-%m-%d %H:%M:%S
[alias]
	lg = log --graph --date=short --pretty=format:'%C(auto)%h %d %s (%Cgreen%an%Creset) %Cblue%ad%Creset'
	lga = log --graph --date=short --pretty=format:'%C(auto)%h %d %s (%Cgreen%an%Creset) %Cblue%ad%Creset' --all
[filter "lfs"]
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true
	clean = git-lfs clean -- %f

其他

  • git diff # 显示所有未添加至index的变更
  • git diff --cached # 显示所有已添加index但还未commit的变更
  • git diff HEAD^ # 比较与上一个版本的差异
  • git diff HEAD -- ./lib # 比较与HEAD版本lib目录的差异
  • git diff origin/master..master # 比较远程分支master上有本地分支master上没有的
  • git diff origin/master..master --stat # 只显示差异的文件,不显示具体内容
  • git remote add origin git+ssh://git@192.168.53.168/VT.git # 增加远程定义(用于push/pull/fetch)
  • git branch # 显示本地分支
  • git branch --contains 50089 # 显示包含提交50089的分支
  • git branch -a # 显示所有分支
  • git branch -r # 显示所有原创分支
  • git branch --merged # 显示所有已合并到当前分支的分支
  • git branch --no-merged # 显示所有未合并到当前分支的分支
  • git branch -m master master_copy # 本地分支改名
  • git checkout -b master_copy # 从当前分支创建新分支master_copy并检出
  • git checkout -b master master_copy # 上面的完整版
  • git checkout features/performance # 检出已存在的features/performance分支
  • git checkout --track hotfixes/BJVEP933 # 检出远程分支hotfixes/BJVEP933并创建本地跟踪分支
  • git checkout v2.0 # 检出版本v2.0
  • git checkout -b devel origin/develop # 从远程分支develop创建新本地分支devel并检出
  • git checkout -- README # 检出head版本的README文件(可用于修改错误回退)
  • git merge origin/master # 合并远程master分支至当前分支
  • git cherry-pick ff44785404a8e # 合并提交ff44785404a8e的修改
  • git push origin master # 将当前分支push到远程master分支
  • git push origin :hotfixes/BJVEP933 # 删除远程仓库的hotfixes/BJVEP933分支
  • git push --tags # 把所有tag推送到远程仓库
  • git fetch # 获取所有远程分支(不更新本地分支,另需merge)
  • git fetch --prune # 获取所有原创分支并清除服务器上已删掉的分支
  • git pull origin master # 获取远程分支master并merge到当前分支
  • git mv README README2 # 重命名文件README为README2
  • git reset --hard HEAD # 将当前版本重置为HEAD(通常用于merge失败回退)
  • git rebase
  • git branch -d hotfixes/BJVEP933 # 删除分支hotfixes/BJVEP933(本分支修改已合并到其他分支)
  • git branch -D hotfixes/BJVEP933 # 强制删除分支hotfixes/BJVEP933
  • git ls-files # 列出git index包含的文件
  • git show-branch # 图示当前分支历史
  • git show-branch --all # 图示所有分支历史
  • git whatchanged # 显示提交历史对应的文件修改
  • git revert dfb02e6e4f2f7b573337763e5c0013802e392818 # 撤销提交dfb02e6e4f2f7b573337763e5c0013802e392818
  • git ls-tree HEAD # 内部命令:显示某个git对象
  • git rev-parse v2.0 # 内部命令:显示某个ref对于的SHA1 HASH
  • git reflog # 显示所有提交,包括孤立节点
  • git show HEAD@{5}
  • git show master@{yesterday} # 显示master分支昨天的状态
  • git log --pretty=format:'%h %s' --graph # 图示提交日志
  • git show HEAD~3
  • git show -s --pretty=raw 2be7fcb476
  • git stash # 暂存当前修改,将所有至为HEAD状态
  • git stash list # 查看所有暂存
  • git stash show -p stash@{0} # 参考第一次暂存
  • git stash apply stash@{0} # 应用第一次暂存
  • git grep "delete from" # 文件中搜索文本“delete from”
  • git grep -e '#define' --and -e SORT_DIRENT
  • git gc
  • git fsck