Misc (#1026): added svn_add.bat and svn_pset.bat, utilities to add new source files to repository

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@3104 74dad513-b988-da41-8d7b-12977e46ad98
remotes/origin/iphone
Benny Prijono 15 years ago
parent 04046c7231
commit a12f5a460b

@ -0,0 +1,12 @@
@echo off
if "%*" EQU "" (
echo Usage: svn_add.bat FILE1 ...
goto end
)
svn add %*
svn_pset.bat %*
:end

@ -0,0 +1,11 @@
@echo off
if "%*" EQU "" (
echo Usage: svn_pset.bat FILE1 ...
goto end
)
svn pset svn:keywords id %*
svn pset svn:eol-style native %*
:end
Loading…
Cancel
Save