### 添加远程仓库
git remote add origin <url>
### 克隆指定分支
git clone -b <branch> <repo>
### 克隆时截取历史commit为指定个数
git clone <repo> --depth 1
### 添加子模块
git submodule add <repository> <path>
### 克隆并拉取子模块
git clone --recurse-submodules
### 拉取子模块
git submodule init
git submodule update
=git submodule update --init
### 拉取所有包括嵌套的子模块
git submodule update --init --recursive
### 出现fatal: refusing to merge unrelated histories错误时使用
git pull origin master --allow-unrelated-histories
### 创建空分支
git checkout --orphan <branch>
### 暂存区与上次commit比较
git diff --staged
### 取消跟踪,可传递文件、目录、file-glob模式
git rm --cached README
### 重命名文件
git mv file_from file_to
### 清除暂存区
git reset HEAD <file>
### 取消暂存
git restore --staged <file>
### 取消更改
git restore <file>
### 丢弃更改
git checkout -- <file>
### 比较文件差异
git diff [<options>] [<commit> [<commit>]] [--] [<path>...]
### 显示指定提交的日志消息和文本差异
git show [<options>] [<object>…]
### 删除无用的远程跟踪分支
git remote prune origin
### 删除远程跟踪分支
git branch -r -d origin/<branch>
### 批量删除分支
git branch |grep '分支过滤关键字' |xargs git branch -D
### 显示每次提交的差异
git log -p -2
### 显示每次提交的统计信息
git log --stat
### 一行显示
git log --pretty=oneline
### 指定格式输出
git log --pretty=format:"%h - %an, %ar : %s"
### 显示合并记录
git log --graph
### 显示最近提交的n个commit
git log -<n>
### 显示指定日期后的commit
git log --since,--after
### 显示指定日期前的commit
git log --until,--before
### 显示指定作者的提交
git log --author
### 显示指定commit message包含的string的提交
git log --grep
### 显示指定代码的提交
git log -s