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
diff --git a/svn_pset.bat b/svn_pset.bat
new file mode 100644
index 0000000..4dfa4d2
--- /dev/null
+++ b/svn_pset.bat
@@ -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