Moved files so that you can convert $HOME in a git repository directly
This commit is contained in:
parent
73e80f935c
commit
f6df53e716
13 changed files with 0 additions and 0 deletions
5
.local/bin/git-author
Executable file
5
.local/bin/git-author
Executable file
|
@ -0,0 +1,5 @@
|
|||
#! /bin/sh
|
||||
# greps all authors and presents them in descending commit order
|
||||
git log --all --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn;
|
||||
#git log --all --format='%aN' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue