17 lines
592 B
Batchfile
17 lines
592 B
Batchfile
@echo off
|
|
REM push-characters.bat - commit and push the character manager changes to Gitea.
|
|
REM Run from anywhere; it always works on K:\newbury-exhibit-v2
|
|
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 "Character manager: asset uploads, per-ghost model/colour/opacity overrides, face+torso texture decals"
|
|
git push origin main
|
|
pause |