📜  Git blame 获取用户编辑最多的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:01.108000             🧑  作者: Mango

代码示例1
#!/bin/bash

# save as i.e.: git-authors and set the executable flag
git ls-tree -r -z --name-only HEAD -- $1 | xargs -0 -n1 git blame \
 --line-porcelain HEAD |grep  "^author "|sort|uniq -c|sort -nr