From: Shane Jaroch Date: Sun, 11 Jan 2026 04:30:18 +0000 (-0500) Subject: fix makefile; less misleading git add origin HERE wow X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=e827dd9b042f1a212dec2b1491b3d379f148cee4;p=nutratech%2Fvps-root.git fix makefile; less misleading git add origin HERE wow --- diff --git a/Makefile b/Makefile index 4aff535..21f4f36 100644 --- a/Makefile +++ b/Makefile @@ -165,11 +165,10 @@ ifdef OWNER endif @echo "Setting description to $(DESC)..." ssh $(VPS) "echo '$(DESC)' > /srv/git/$(REPO_GIT)/description" - @echo "Configuring local remote 'helio-web'..." - -@git remote start helio-web ssh://$(VPS_USER)@$(VPS_HOST)/srv/git/$(REPO_GIT) 2>/dev/null || \ - git remote add helio-web ssh://$(VPS_USER)@$(VPS_HOST)/srv/git/$(REPO_GIT) @echo "Repository initialized!" - @echo " Push: git push -u helio-web main" + @echo "CD into the repository and run the following commands:" + @echo " Add remote: git remote add helio-web ssh://$(VPS_USER)@$(VPS_HOST)/srv/git/$(REPO_GIT)" + @echo " Push: git push -u helio-web main" .PHONY: git/rename-remote git/rename-remote: ##H @Remote Rename/Move a repository on VPS (usage: make git/rename-remote OLD=projects/old.git NEW=@github.com/new.git)