109 lines
2.1 KiB
Markdown
109 lines
2.1 KiB
Markdown
|
|
# Repository Setup Required
|
||
|
|
|
||
|
|
**Date**: 2026-01-26
|
||
|
|
**Status**: ⚠️ **Repository URL needs to be configured**
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Current Status
|
||
|
|
|
||
|
|
✅ **Remote configured**: `git@github.com:defiQUG/proxmox.git`
|
||
|
|
❌ **Repository not found**: The repository doesn't exist at this URL yet
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Options
|
||
|
|
|
||
|
|
### Option 1: Create New Repository on GitHub
|
||
|
|
|
||
|
|
1. **Go to GitHub**: https://github.com/new
|
||
|
|
2. **Repository name**: `proxmox` (or your preferred name)
|
||
|
|
3. **Owner**: Select your account or organization
|
||
|
|
4. **Visibility**: Choose public or private
|
||
|
|
5. **Do NOT initialize** with README, .gitignore, or license
|
||
|
|
6. **Click "Create repository"**
|
||
|
|
|
||
|
|
7. **Then update the remote**:
|
||
|
|
```bash
|
||
|
|
git remote set-url origin git@github.com:YOUR_USERNAME/proxmox.git
|
||
|
|
# Or if using an organization:
|
||
|
|
git remote set-url origin git@github.com:YOUR_ORG/proxmox.git
|
||
|
|
```
|
||
|
|
|
||
|
|
8. **Push**:
|
||
|
|
```bash
|
||
|
|
git push -u origin master
|
||
|
|
git push origin --tags
|
||
|
|
```
|
||
|
|
|
||
|
|
### Option 2: Use Existing Repository
|
||
|
|
|
||
|
|
If you already have a repository, update the remote:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
# Remove current remote
|
||
|
|
git remote remove origin
|
||
|
|
|
||
|
|
# Add your repository URL
|
||
|
|
git remote add origin git@github.com:YOUR_USERNAME/YOUR_REPO.git
|
||
|
|
|
||
|
|
# Verify
|
||
|
|
git remote -v
|
||
|
|
|
||
|
|
# Push
|
||
|
|
git push -u origin master
|
||
|
|
git push origin --tags
|
||
|
|
```
|
||
|
|
|
||
|
|
### Option 3: Use Interactive Script
|
||
|
|
|
||
|
|
Run the configuration script:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
./token-lists/scripts/configure-git-remote.sh
|
||
|
|
```
|
||
|
|
|
||
|
|
This will prompt you for the correct repository URL.
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Current Remote Configuration
|
||
|
|
|
||
|
|
Current remote is set to:
|
||
|
|
```
|
||
|
|
git@github.com:defiQUG/proxmox.git
|
||
|
|
```
|
||
|
|
|
||
|
|
To change it:
|
||
|
|
```bash
|
||
|
|
git remote set-url origin <your-actual-repo-url>
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## After Repository is Set Up
|
||
|
|
|
||
|
|
Once the repository exists and remote is configured correctly:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
# Push commits
|
||
|
|
git push -u origin master
|
||
|
|
|
||
|
|
# Push tags
|
||
|
|
git push origin --tags
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Ready to Push
|
||
|
|
|
||
|
|
- ✅ **5 commits** ready (including token lists and configuration)
|
||
|
|
- ✅ **3 tags** ready (`token-list-*`)
|
||
|
|
- ✅ **SSH authentication** working
|
||
|
|
- ✅ **Git configuration** complete
|
||
|
|
- ⏭️ **Repository** needs to be created or remote updated
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
**Last Updated**: 2026-01-26
|