/
delbraun
/
AutoRAWCompressor
Обзор
Документация
Войти
/
delbraun
/
AutoRAWCompressor
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
14
CI/CD
Аналитика
Безопасность
master
sync_all.bat
35 строк
631 B
Divan Games
release: 0.0.2.10.Alpha — прогресс экспорта по папкам, GitHub releases
30 июн 2026, 10:26
30 июн 2026, 10:26
cd938bd
Код
Авторство
О чём код?
@echo off rem Push code to GitHub and GitVerse (releases and updates — GitHub only). setlocal EnableExtensions cd /d "%~dp0" set "GIT_SAFE=-c safe.directory=%CD%" set "BRANCH=master" if not exist ".git" ( echo Not a git repository. pause exit /b 1 ) echo Pushing %BRANCH% to GitHub... git %GIT_SAFE% push -u github %BRANCH% if errorlevel 1 ( echo GitHub push failed. pause exit /b 1 ) echo. echo Pushing %BRANCH% to GitVerse... git %GIT_SAFE% push -u gitverse %BRANCH% if errorlevel 1 ( echo GitVerse push failed. pause exit /b 1 ) echo. echo Both remotes are up to date. pause exit /b 0