fix makefile; less misleading git add origin HERE wow
authorShane Jaroch <chown_tee@proton.me>
Sun, 11 Jan 2026 04:30:18 +0000 (23:30 -0500)
committerShane Jaroch <chown_tee@proton.me>
Sun, 11 Jan 2026 08:43:49 +0000 (03:43 -0500)
Makefile

index 4aff5358befa3dee3ef427346ad7cfe420b260c1..21f4f36097bace1bac153b87eb793fb3f279e8c3 100644 (file)
--- 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)