- Download: https://git-scm.com/download/windows
- Install with default settings
- Restart PowerShell
Right-click on one of these files and select "Run":
setup-git-and-upload.bat(Windows Batch)- OR
setup-git-and-upload.ps1(PowerShell)
The script will:
- ✅ Configure Git
- ✅ Initialize repository
- ✅ Add remote (your GitHub repo)
- ✅ Commit README first
- ✅ Push README to GitHub
- ✅ Ask if you want to upload all other files
- ✅ Upload everything
# Open PowerShell and run these commands:
cd "C:\Cursor Projects\apollo\apollo-email-scraper-main"
# Configure Git (first time only)
git config --global user.name "Your Name"
git config --global user.email "your@email.com"
# Initialize
git init
# Add remote
git remote add origin https://github.com/abdulwasay8126/apollo-2.0.git
# Create main branch
git checkout -b main
# Commit README only
git add README.md
git commit -m "Initial commit: Add comprehensive README"
git push -f origin main
# Then add everything else
git add .
git commit -m "Add complete Apify scraper with documentation"
git push origin mainDone! Check: https://github.com/abdulwasay8126/apollo-2.0
- Go to https://github.com/abdulwasay8126/apollo-2.0
- Delete all 6 old files one by one
- Click "Add file" → "Upload files"
- Drag
README.md - Commit
- Click "Add file" → "Upload files"
- Drag all other files
- Commit
- main.js
- package.json
- Dockerfile
- actor.json
- INPUT_SCHEMA.json
- apify.json
- README.md
- START_HERE.md
- QUICK_START.md
- SETUP_GUIDE.md
- USAGE.md
- DEPLOYMENT.md
- CONTRIBUTING.md
- PROJECT_SUMMARY.md
- PROJECT_STRUCTURE.md
- CONVERSION_COMPLETE.md
- CHANGELOG.md
- test-local.js
- .gitignore
- .dockerignore
- .actor/ (2 files)
- chrome-extension-original/ (5 files)
Total: 28 files
When pushing to GitHub, you'll be asked for credentials:
- Username: abdulwasay8126
- Password: Use a Personal Access Token, NOT your GitHub password
- Go to: https://github.com/settings/tokens
- Click "Generate new token (classic)"
- Give it a name: "Apollo Scraper Upload"
- Select scope: ✅
repo(full control) - Click "Generate token"
- Copy the token (you won't see it again!)
- Use this token as your password when Git asks
After uploading, check your repository: https://github.com/abdulwasay8126/apollo-2.0
You should see:
- ✅ 28 files
- ✅ Beautiful README
- ✅ Complete documentation
- ✅ Ready to deploy to Apify
- ✅ Update repository description on GitHub
- ✅ Add topics:
apify,apollo-io,scraper,data-extraction - ✅ Enable GitHub Pages (optional)
- ✅ Deploy to Apify using the QUICK_START.md guide
- ✅ Start scraping!
- Git not working? → See
GIT_SETUP_GUIDE.md - Detailed steps? → See
UPLOAD_INSTRUCTIONS.md - Script errors? → Run commands manually (Option 2)
Choose Option 1 (Automated Script) for easiest upload!