- Go to: https://git-scm.com/download/windows
- Download the installer
- Run the installer (use default settings)
- Restart your terminal/PowerShell
git --versiongit config --global user.name "Your Name"
git config --global user.email "your.email@example.com"- Go to: https://github.com/abdulwasay8126/apollo-2.0
- Delete all existing files:
- Click on each file
- Click the trash icon (🗑️)
- Commit the deletion
- Upload new README.md:
- Click "Add file" → "Upload files"
- Drag
README.mdfrom this project - Commit the changes
# Navigate to your project
cd "C:\Cursor Projects\apollo\apollo-email-scraper-main"
# Initialize git (if not already)
git init
# Add your remote repository
git remote add origin https://github.com/abdulwasay8126/apollo-2.0.git
# Create a new branch
git checkout -b main
# Stage only README first
git add README.md
# Commit
git commit -m "Initial commit: Add comprehensive README"
# Force push to clean the repository
git push -f origin main# Stage all files
git add .
# Commit everything
git commit -m "Add complete Apify scraper with documentation"
# Push to GitHub
git push origin mainGo to: https://github.com/abdulwasay8126/apollo-2.0
You should see all your new files!
# Check status
git status
# Stage specific file
git add filename.js
# Stage all files
git add .
# Commit with message
git commit -m "Your message here"
# Push to GitHub
git push origin main
# Pull latest changes
git pull origin main- Install Git from git-scm.com
- Restart terminal
- Set up SSH key or use HTTPS with personal access token
- See: https://docs.github.com/en/authentication
- Check repository URL
- Make sure you have access
Need help? Open an issue on GitHub!