1.1 KiB
1.1 KiB
Git Push Instructions
The Git repository has been initialized and committed locally. To push to your Git server:
Option 1: Push via Command Line (Manual)
# Remove existing remote
git remote remove origin
# Add remote without credentials in URL
git remote add origin https://git.votcloud.com/austindebest/sdi.git
# Push (will prompt for credentials)
git push -u origin main
# Username: austindebest
# Password: VcG_3xwbEUyDcMqgKwTTLJP4KoEp!Q9
Option 2: Use Git Credential Manager
# Configure credential helper
git config credential.helper store
# Push (will save credentials after first use)
git push -u origin main
Option 3: Deploy Without Git
Since Git authentication is having issues, I recommend deploying directly to the server:
I can help you deploy to the server now using SSH. Would you like me to:
- Create the deployment package
- Upload it to your server via SSH/SCP
- Set up the application on the server
- Start all services
This will bypass Git entirely and get your application running on the dev server immediately.
Shall I proceed with the direct deployment to 102.69.243.165?