Files
proxmox/token-lists/REPOSITORY_SETUP_REQUIRED.md
2026-01-26 14:20:30 -08:00

2.1 KiB

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:

    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:

    git push -u origin master
    git push origin --tags
    

Option 2: Use Existing Repository

If you already have a repository, update the remote:

# 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:

./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:

git remote set-url origin <your-actual-repo-url>

After Repository is Set Up

Once the repository exists and remote is configured correctly:

# 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