Horje
Git blame Code Example
Git blame
Blame whoever broke production
git blame
"git blame" shows line by line `last` commit history of a file,
			when and by whom the line was updated
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




Shell

Related
git change author multiple commits Code Example git change author multiple commits Code Example
create windows 10 bootable usb in ubuntu Code Example create windows 10 bootable usb in ubuntu Code Example
creating a gitignore for xcode project Code Example creating a gitignore for xcode project Code Example
delete all lines in vi Code Example delete all lines in vi Code Example
yum install package with version Code Example yum install package with version Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9