17 lines
528 B
Batchfile
17 lines
528 B
Batchfile
@echo off
|
|
REM push-landing.bat - commit and push the landing page editor + shutter button.
|
|
cd /d K:\newbury-exhibit-v2
|
|
|
|
if not exist .git (
|
|
echo No git repo here - initialising and linking to Gitea...
|
|
git init -b main
|
|
git remote add origin https://gitea.hideawaygaming.com.au/jessikitty/newbury-exhibit-v2.git
|
|
git fetch origin
|
|
git reset --soft origin/main
|
|
)
|
|
|
|
git add -A
|
|
git commit -m "Landing page editor: logo/background/subtitle, markdown details page, editable disclaimer, photo shutter"
|
|
git push origin main
|
|
pause
|