# Push Images to Gitea - Manual Instructions ## Status - 22 commits ready to push - 495 image files committed - Authentication required for Gitea ## Method 1: Push All at Once (Recommended) ```bash cd /Users/kunthawatgreethong/Gitea/dealplustech-new/dealplustech-astro git push origin main --force ``` Enter your Gitea password when prompted. ## Method 2: Push in Batches If Method 1 fails, push in smaller batches: ### Batch 1: Corporate + Banners (2 commits) ```bash git push origin HEAD~22..HEAD~20 --force ``` ### Batch 2: Pipe Images (4 commits) ```bash git push origin HEAD~20..HEAD~16 --force ``` ### Batch 3: Valves + Grilles + Mech (3 commits) ```bash git push origin HEAD~16..HEAD~13 --force ``` ### Batch 4: More Categories (5 commits) ```bash git push origin HEAD~13..HEAD~8 --force ``` ### Batch 5: Final Categories (8 commits) ```bash git push origin HEAD~8..HEAD --force ``` ## Troubleshooting If authentication fails: 1. Make sure you're using correct Gitea credentials 2. Try: `git config --global credential.helper cache` 3. Or use SSH instead of HTTPS (if configured) ## Verify Push After pushing, check: https://git.moreminimore.com/kunthawat/dealplustech/commits/branch/main You should see 22 new commits with image files.