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
This commit is contained in:
Benny Prijono 2010-02-19 13:05:08 +00:00
parent 04046c7231
commit a12f5a460b
2 changed files with 23 additions and 0 deletions

12
svn_add.bat Normal file
View File

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

11
svn_pset.bat Normal file
View File

@ -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