1
ewconfig/scripts/git-detect-fake-authors
2024-02-19 15:08:27 -05:00

6 lines
308 B
Bash
Executable File

#! /bin/bash
# This script finds every time someone makes a commit under someone else's name
# NOTE: This includes co-authoring
set -e
git-log-sqlite -q 'SELECT committer as Real, author as Fake, count(*) as Count FROM commits WHERE author NOT LIKE committer GROUP BY author, committer ORDER BY count DESC;'