git: 4fb507cae916 - main - git-arc: Tweak heuristic for email address

From: Warner Losh <imp_at_FreeBSD.org>
Date: Wed, 18 Feb 2026 16:55:09 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=4fb507cae916d04fcd1e80e69923c5ca5c4340eb

commit 4fb507cae916d04fcd1e80e69923c5ca5c4340eb
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2026-02-09 16:14:16 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2026-02-18 16:39:28 +0000

    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
---
 tools/tools/git/git-arc.sh | 1 +
 1 file changed, 1 insertion(+)

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