20 lines
236 B
Batchfile
20 lines
236 B
Batchfile
@echo off
|
|
@echo FossilRepository=%1
|
|
@echo GitRepository=%2
|
|
@echo GitExe=%3
|
|
@echo DescFile=%4
|
|
|
|
@echo.
|
|
@echo.
|
|
@echo dmustache repository
|
|
@echo --------------------
|
|
|
|
@cd ..\dmustache
|
|
|
|
%3 add .
|
|
%3 commit -a --file=%4
|
|
%3 push
|
|
|
|
@echo.
|
|
@pause
|