47 lines
1.2 KiB
Markdown
47 lines
1.2 KiB
Markdown
|
|
# Quick Push Guide
|
||
|
|
|
||
|
|
## Current Status
|
||
|
|
|
||
|
|
✅ **All git requirements configured**
|
||
|
|
✅ **6 commits ready** (including token lists)
|
||
|
|
✅ **3 tags ready** (`token-list-*`)
|
||
|
|
✅ **SSH authentication working**
|
||
|
|
⏭️ **Repository URL needed**
|
||
|
|
|
||
|
|
## Quick Setup
|
||
|
|
|
||
|
|
### Step 1: Set Repository URL
|
||
|
|
|
||
|
|
If you haven't created the repository yet:
|
||
|
|
1. Go to https://github.com/new
|
||
|
|
2. Create repository (don't initialize with files)
|
||
|
|
3. Copy the repository URL
|
||
|
|
|
||
|
|
Then set it:
|
||
|
|
```bash
|
||
|
|
git remote add origin git@github.com:YOUR_USERNAME/YOUR_REPO.git
|
||
|
|
# Or if it already exists:
|
||
|
|
git remote set-url origin git@github.com:YOUR_USERNAME/YOUR_REPO.git
|
||
|
|
```
|
||
|
|
|
||
|
|
### Step 2: Push Everything
|
||
|
|
|
||
|
|
**Option A: Use the automated script (Recommended)**
|
||
|
|
```bash
|
||
|
|
./token-lists/scripts/setup-and-push.sh
|
||
|
|
```
|
||
|
|
|
||
|
|
**Option B: Manual push**
|
||
|
|
```bash
|
||
|
|
git push -u origin master
|
||
|
|
git push origin --tags
|
||
|
|
```
|
||
|
|
|
||
|
|
## That's It!
|
||
|
|
|
||
|
|
After push, your token lists will be available at:
|
||
|
|
- `https://raw.githubusercontent.com/YOUR_USERNAME/YOUR_REPO/master/token-lists/lists/dbis-138.tokenlist.json`
|
||
|
|
- `https://raw.githubusercontent.com/YOUR_USERNAME/YOUR_REPO/master/token-lists/lists/ethereum-mainnet.tokenlist.json`
|
||
|
|
- `https://raw.githubusercontent.com/YOUR_USERNAME/YOUR_REPO/master/token-lists/lists/all-mainnet.tokenlist.json`
|
||
|
|
|