23 lines
282 B
Batchfile
23 lines
282 B
Batchfile
@echo off
|
|
@echo FossilRepository=%1
|
|
@echo GitRepository=%2
|
|
@echo GitExe=%3
|
|
@echo DescFile=%4
|
|
@echo DevPath=%5
|
|
|
|
@echo.
|
|
@echo.
|
|
@echo mORMot repository
|
|
@echo -----------------
|
|
|
|
rem %3 pull
|
|
|
|
del /q /s %2\*.bak %2\*.bk2 > nul 2> nul
|
|
|
|
%3 add .
|
|
%3 commit -a --file=%4
|
|
%3 push
|
|
|
|
echo.
|
|
pause
|