From 8ed659579f5c00b2cea5dfdf012bc13888027fdc Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 24 May 2025 11:21:35 -0700 Subject: [PATCH] fix how the remotes are configured --- new_job | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/new_job b/new_job index 74a5fdc..64b554a 100755 --- a/new_job +++ b/new_job @@ -4,8 +4,8 @@ URL="$1" NAME="$2" git branch "$NAME" -git config set branch."$NAME".pushremote=private -git config set branch."$NAME".remote=private +git config set branch."$NAME".pushremote private +git config set branch."$NAME".remote private git checkout "$NAME" echo "{\"url\":\"$URL\",\"name\":\"$NAME\"}" > job_details.json -- 2.39.5