这里每个命令只写了一个例子,如果需要更详细的说明,请直接git [command] —help,你会找到你要的答案
查看git配置
Git 配置的所有数据都存储在用户主目录下的 .gitconfig 文件或者项目目录中的 .git/config 文件中, 可以通过如下命令查看:
# 设置
git config user.name foobar
# 查看
git config user.name
# 查看全局配置
git config --global --list
# 查看当前项目配置
git config --list
更多示例详见 git config --help
解决git status不能显示中文
git config --global core.quotepath false
获取最近的tag
To get the most recent tag (example output afterwards):
git describe --tags --abbrev=0 # 0.1.0-dev
To get the most recent tag, with the number of additional commits on top of the tagged object & more:
git describe --tags # 0.1.0-dev-93-g1416689
To get the most recent annotated tag:
git describe --abbrev=0
获取当前分支的remote
git config --get branch.main.remote
或者
$ git branch -vv
main aaf02f0 [main/master: ahead 25] Some other commit
* master add0a03 [jdsumsion/master] Some commit
或者
➜ wpdebugpod git:(main) git status -b --porcelain
## main...origin/main [ahead 3, behind 1]
git查看一个commit属于哪个分支
git branch -r --contains COMMIT_ID
两个 commit 之间的关系
Check if the first is an ancestor of the second , and exit with status 0 if true, or with status 1 if not. Errors are signaled by a non-zero status that is not 1.
git merge-base --is-ancestor
打印当前分支名
git symbolic-ref --short HEAD
or
git rev-parse --abbrev-ref HEAD
$ git branch
* curent_branch_xxx
enable_func
$ git symbolic-ref --short HEAD
curent_branch_xxx
git status
git status -s
git status -b --porcelain
//展示分支信息/标准化的输出
➜ wpdebugpod git:(main) ✗ git status -b --porcelain
## main...origin/main [ahead 1, behind 1]
AM buz.txt
如果你同样关注git 文件夹中是否有未纳入版本控制的文件,那么 git status 是更妥善的办法,使用 git status -s命令输出当前状态,如果git 文件夹是干净的(也没有untracked文件),则不输出任何内容,否则显示改变或增加的文件列表。所以我们可以使用类似下面这样的表达式来判断git 文件夹是否干净。
$ [[ -z $(git status -s) ]] || echo 'modified/untracked'
Show git remote URL
- get git remote url:
git config --get remote.origin.url
- show remote git address
git remote -v
- show details of origin
git remote show origin
展示git commit
To turn any extended object reference into a hash, use git-rev-parse:
git rev-parse HEAD
orgit rev-parse --verify HEAD
To retrieve the short hash:
git rev-parse --short HEAD
To turn references (e.g. branches and tags) into hashes, use
git show-ref
and gitfor-each-ref
.修改当前commit
可以用在修改commit内容,或者只修改comment
// 如果你git commit完之后发现这个commit还需要修改,
// 可以在修改完之后将修改的内容合并到当前head所在的commit,不需要新建commit
git add .
git commit --amend
- 清空对应remote分支已经不存在的本地分支
git remote prune origin
- 更新gitignore
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
- 删除远程分支和tag
// 删除远程分支
git push origin --delete
// 删除tag这么用:
git push origin --delete tag
- 查看还未merge/已经merged的分支
$ git branch --merged
$ git branch --no-merged
- 撤销一个commit,并创建一个记录此次revert动作的commit
git revert head
以下是代码量统计命令
- 统计每个人的增删行数
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done
- 查看仓库提交者排名前 5
git log --pretty='%aN' | sort | uniq -c | sort -k1 -n -r | head -n 5
- 贡献者统计:
git log --pretty='%aN' | sort -u | wc -l
- 提交数统计:
git log --oneline | wc -l
- 统计代码总行数:
find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs grep -v "^$"|wc -l