Answers for "Git blame"

2

git blame

"git blame" shows line by line `last` commit history of a file,
			when and by whom the line was updated
Posted by: Guest on July-03-2021
2

Git blame

Blame whoever broke production
Posted by: Guest on February-15-2021
0

Git blame get users most edited file

#!/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
Posted by: Guest on October-16-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language