44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
## 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)
|
|
|
|
```bash
|
|
# 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
|
|
|
|
```bash
|
|
# 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:**
|
|
|
|
1. Create the deployment package
|
|
2. Upload it to your server via SSH/SCP
|
|
3. Set up the application on the server
|
|
4. 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?**
|