update Tue 07/14/2026 11:38:16.92

This commit is contained in:
2026-07-14 11:38:17 +10:00
commit b2b555ef16
38 changed files with 7348 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
@echo off
REM upload-to-gitea.bat — push F:\HiddenSide\newbury-exhibit-v2 to Gitea.
REM First run initialises the repo; later runs just commit + push everything.
cd /d F:\HiddenSide\newbury-exhibit-v2
if not exist .git (
git init -b main
git remote add origin https://gitea.hideawaygaming.com.au/jessikitty/newbury-exhibit-v2.git
)
git add -A
git commit -m "update %date% %time%" || echo Nothing to commit.
git push -u origin main
pause