Moved files so that you can convert $HOME in a git repository directly

This commit is contained in:
Tobias Schmidl 2018-05-29 11:00:40 +02:00
parent 73e80f935c
commit f6df53e716
13 changed files with 0 additions and 0 deletions

5
.local/bin/git-author Executable file
View 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;