Git常用命令

创建仓库时

1
2
git init
git remote add origin git@github.com:xxx.git

统计代码量

所有人代码量

1
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

某个人代码量

1
git log --author="xxx" --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 }' -

Git常用命令
http://jack-constantine.github.io/2023/11/19/Git常用命令/
作者
JackConstantine
发布于
2023年11月19日
许可协议