12 lines
309 B
PowerShell
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
|