From d3351b0f01e0fa7ddbbd2e98ee82246a03bb1fc3 Mon Sep 17 00:00:00 2001 From: rob Date: Mon, 5 Jan 2026 18:39:39 -0400 Subject: [PATCH] Use HTTPS for git remote (SSH port 222 unavailable) --- bin/new-project | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/new-project b/bin/new-project index 03bfd03..8c8f647 100755 --- a/bin/new-project +++ b/bin/new-project @@ -25,7 +25,7 @@ CONFIG_DIR="$HOME/.config/development-hub" TOKEN_FILE="$CONFIG_DIR/gitea-token" GITEA_URL="https://gitea.brrd.tech" -GITEA_SSH="ssh://git@gitea.brrd.tech:222" +GITEA_CLONE_URL="https://gitea.brrd.tech" # Use HTTPS for cloning (SSH port 222 often unavailable) GITEA_OWNER="rob" # Colors @@ -261,7 +261,7 @@ create_local_project() { cd "$project_dir" git init --quiet - git remote add origin "$GITEA_SSH/$GITEA_OWNER/$name.git" + git remote add origin "$GITEA_CLONE_URL/$GITEA_OWNER/$name.git" log_success "Created local project with git" }