From 7d115fe1726b45741f197688bfcfb12ff9244541 Mon Sep 17 00:00:00 2001 From: yuxh Date: Sun, 11 May 2025 23:56:37 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E6=9B=B4=E6=96=B0=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?=20URL=20=E4=B8=BA=20HTTPS=20=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将模板 URL 从 SSH 形式改为 HTTPS 形式 - 适应远程仓库地址变更,确保代码克隆和更新正常进行 --- cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index 59d49eb..913b25d 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -8,7 +8,7 @@ import ( ) var ( - template = "git@golib-ssh.gaore.com:GaoreGo/hertz_demo.git" + template = "https://golib.gaore.com/GaoreGo/hertz_demo.git" project string branch string )