chatbot21 / save_local_backup.bat
Martechsol
Backup: notification sound is working perfectly
993a996
Raw
History Blame Contribute Delete
732 Bytes
@echo off
echo ===================================================
echo Saving Local Backup
echo ===================================================
cd /d "%~dp0"
echo 1. Committing current working state to Git...
git add .
git commit -m "Backup: notification sound is working perfectly"
echo.
echo 2. Creating a separate backup folder on your Desktop...
set BACKUP_DIR="%~dp0..\RAG_backup_working_audio"
mkdir %BACKUP_DIR% 2>nul
xcopy "%~dp0*.*" %BACKUP_DIR%\ /E /I /H /Y
echo.
echo ===================================================
echo Done!
echo 1. Your changes are safely committed in Git.
echo 2. A full copy of this folder has been saved to your Desktop as "RAG_backup_working_audio".
pause