what is blame in git code example
Example 1: git blame
git blame README.MD
git blame -L 1,5 README.md
#use -L to specify the range to investigate
Example 2: 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
Example 3: Git blame
Blame whoever broke production