CoolFace
Apppublic

hugging2021/local-gemma4-rag

sourceHugging Faceupdated 6mo agoView on Hugging Face
1likes
sync.ps129 linesDownload Raw Back to root
1param (2    [string]$msg = "Sync changes from Antigravity"3)4 5Write-Host "๐Ÿ”„ Synchronizing repository..." -ForegroundColor Yellow6 7# Check for changes8$status = git status --porcelain9if (-not $status) {10    Write-Host "โœจ No changes to sync." -ForegroundColor Green11    exit12}13 14# 1. Add all changes15git add --all16 17# 2. Commit18git commit -m $msg19 20# 3. Push to GitHub21Write-Host "๐Ÿš€ Pushing to GitHub (origin)..." -ForegroundColor Cyan22git push origin main23 24# 4. Push to Hugging Face25Write-Host "๐Ÿš€ Pushing to Hugging Face (huggingface)..." -ForegroundColor Cyan26git push huggingface main27 28Write-Host "โœ… Sync complete!" -ForegroundColor Green29