Initial commit — DashMail prototype

This commit is contained in:
Devon
2026-05-25 09:07:43 -04:00
commit 22aca3cfd1
10 changed files with 5912 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
@echo off
cd /d "%~dp0"
echo.
echo DashMail ^— Push to Gitea
echo =========================================
echo.
git status --short
echo.
set /p msg=" Commit message: "
if "%msg%"=="" (
echo.
echo Cancelled -- no message entered.
echo.
pause
exit /b 1
)
echo.
git add -A
git commit -m "%msg%"
git push
echo.
if %errorlevel%==0 (
echo Pushed successfully.
) else (
echo Push failed -- check your connection to Gitea.
)
echo.
pause