From 9283b03f3ead28526cd473299048f881164a965e Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Tue, 17 Dec 2024 06:18:24 +0100 Subject: [PATCH] Add User-Agent for gitea's self-implemented lfs client. (branding) --- modules/lfs/shared.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lfs/shared.go b/modules/lfs/shared.go index cd9488e3db..ae4bb1f86b 100644 --- a/modules/lfs/shared.go +++ b/modules/lfs/shared.go @@ -19,7 +19,7 @@ const ( // UserAgentHeader Add User-Agent for gitea's self-implemented lfs client, // and the version is consistent with the latest version of git lfs can be avoided incompatibilities. // Some lfs servers will check this - UserAgentHeader = "git-lfs/3.6.0 (Gitea)" + UserAgentHeader = "git-lfs/3.6.0 (Forgejo)" ) // BatchRequest contains multiple requests processed in one batch operation.