Files
sitemente/push-to-github.ps1
Haitham Khalifa 11252e6520 Initial commit
2026-02-16 12:02:45 +01:00

12 lines
309 B
PowerShell

# Run this from d:\Projects\SiteMente (or your local code folder)
# Replace YOUR_USERNAME with your GitHub username
Set-Location $PSScriptRoot
git init
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin https://github.com/HaithamEKhalifa/sitemente.git
git push -u origin main