6 lines
91 B
Bash
6 lines
91 B
Bash
|
#!/bin/sh
|
||
|
# Nico Schottelius
|
||
|
# 2023-09-22
|
||
|
|
||
|
git log | grep ^Author | sort | uniq -c | sort
|