diff options
| author | Warner Losh <imp@FreeBSD.org> | 2026-02-09 16:14:16 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-02-18 16:39:28 +0000 |
| commit | 4fb507cae916d04fcd1e80e69923c5ca5c4340eb (patch) | |
| tree | 5d88aa2cd33dce89c92e5488701076d6c149901a | |
| parent | b2ba4131b9b08d6231392c0b798d0ff35809f600 (diff) | |
git-arc: Tweak heuristic for email address
In the email address heuristic, assume guest-* are external
contributors. It's a new convention, apparently.
Sponsored by: Netflix
| -rwxr-xr-x | tools/tools/git/git-arc.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/tools/git/git-arc.sh b/tools/tools/git/git-arc.sh index f15cade1f1e7..23b855aef8af 100755 --- a/tools/tools/git/git-arc.sh +++ b/tools/tools/git/git-arc.sh @@ -459,6 +459,7 @@ find_author() # commits reviewed). case "${addr}" in *.*) ;; # external user + guest-*) ;; # Fake email address, not a FreeBSD user *) echo "${name} <${addr}@FreeBSD.org>" return |
