Skip to content

Latest commit

 

History

History

git-log-of-format-and-count

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

git log-of-format-and-count

Show log with a custom format string and count

Git alias:

log-of-format-and-count = "!f() { format=\"$1\"; shift; git log $@ --format=oneline --format="$format" | awk '{a[$0]++}END{for(i in a){print i, a[i], int((a[i]/NR)*100) \"%\"}}' | sort; }; f"

Example:

git log-of-format-and-count <format>

Compare git log-of-count-and-format.