From 5be83365bcf6d325baadc80ab823c34c0ccb9867 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 6 Oct 2025 18:41:21 -0400 Subject: [PATCH] fix clone url --- scripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/index.js b/scripts/index.js index bcba2d6..ce15189 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -61,7 +61,7 @@ function renderRepoDescription(repoLink) { const cloneUrl = document.createElement("div"); cloneUrl.style.marginTop = "15px"; - cloneUrl.innerHTML = `git clone https://git.barrettruth.com/git/${repoName}.git`; + cloneUrl.innerHTML = `git clone git@git.barrettruth.com:${repoName}.git`; post.appendChild(cloneUrl);