Clean your repository (https://github.com/abdulwasay8126/apollo-2.0) and upload all the new Apify scraper files.
-
Go to your repository:
-
Delete all existing files:
- Click on
LICENSE.md→ Click trash icon 🗑️ → Commit deletion - Click on
README.md→ Click trash icon 🗑️ → Commit deletion - Click on
clip.png→ Click trash icon 🗑️ → Commit deletion - Click on
manifest.json→ Click trash icon 🗑️ → Commit deletion - Click on
popup.html→ Click trash icon 🗑️ → Commit deletion - Click on
popup.js→ Click trash icon 🗑️ → Commit deletion
- Click on
-
Repository should now be empty!
-
On GitHub, click "Add file" → "Upload files"
-
Drag and drop ONLY:
README.md
-
Commit message:
Initial commit: Add comprehensive Apify scraper README -
Click "Commit changes"
-
Click "Add file" → "Upload files" again
-
Drag and drop these files:
main.jspackage.jsonDockerfileactor.jsonINPUT_SCHEMA.jsonapify.jsontest-local.jsLICENSE.md
-
Commit message:
Add core Apify actor files and dependencies -
Click "Commit changes"
-
Click "Add file" → "Upload files" again
-
Drag and drop these documentation files:
START_HERE.mdQUICK_START.mdSETUP_GUIDE.mdUSAGE.mdDEPLOYMENT.mdCONTRIBUTING.mdPROJECT_SUMMARY.mdPROJECT_STRUCTURE.mdCONVERSION_COMPLETE.mdCHANGELOG.md
-
Commit message:
Add comprehensive documentation (11 files) -
Click "Commit changes"
-
Click "Add file" → "Create new file"
-
Create
.gitignore:- Filename:
.gitignore - Copy contents from your local
.gitignorefile - Commit message:
Add .gitignore
- Filename:
-
Create
.dockerignore:- Filename:
.dockerignore - Copy contents from your local
.dockerignorefile - Commit message:
Add .dockerignore
- Filename:
-
Click "Add file" → "Create new file"
-
Create
.actor/input.json:- Filename:
.actor/input.json - Copy contents from
.actor/input.json - Commit message:
Add example input configuration
- Filename:
-
Create
.actor/actor.json:- Filename:
.actor/actor.json - Copy contents from
.actor/actor.json - Commit message:
Add actor metadata
- Filename:
-
Click "Add file" → "Create new file"
-
Create files one by one:
chrome-extension-original/README.mdchrome-extension-original/manifest.jsonchrome-extension-original/popup.htmlchrome-extension-original/popup.js
-
For
clip.png:- Upload as file (can't create images via text)
After uploading, your repository should have:
apollo-2.0/
├── 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 ✅
├── main.js ✅
├── package.json ✅
├── Dockerfile ✅
├── actor.json ✅
├── INPUT_SCHEMA.json ✅
├── apify.json ✅
├── test-local.js ✅
├── LICENSE.md ✅
├── .gitignore ✅
├── .dockerignore ✅
├── .actor/
│ ├── input.json ✅
│ └── actor.json ✅
└── chrome-extension-original/
├── README.md ✅
├── manifest.json ✅
├── popup.html ✅
├── popup.js ✅
└── clip.png ✅
If you prefer a GUI:
-
Download GitHub Desktop:
-
Clone your repository:
- File → Clone Repository
- Choose
abdulwasay8126/apollo-2.0
-
Copy all files from this project to the cloned folder
-
In GitHub Desktop:
- Review changes
- Write commit message
- Click "Commit to main"
- Click "Push origin"
# Navigate to your project
cd "C:\Cursor Projects\apollo\apollo-email-scraper-main"
# Initialize if needed
git init
# Add remote
git remote add origin https://github.com/abdulwasay8126/apollo-2.0.git
# Stage only README first
git add README.md
git commit -m "Initial commit: Add comprehensive README"
git branch -M main
git push -f origin main
# Then add everything else
git add .
git commit -m "Add complete Apify scraper with documentation"
git push origin mainYour repository is now clean and has all the Apify scraper files!
Next steps:
- Update repository description on GitHub
- Add topics:
apify,apollo-io,scraper,data-extraction - Enable GitHub Pages (optional)
- Share with others!
Need help? Check GIT_SETUP_GUIDE.md for more details!