12 lines
155 B
Batchfile
12 lines
155 B
Batchfile
|
@echo off
|
||
|
|
||
|
if "%*" EQU "" (
|
||
|
echo Usage: svn_pset.bat FILE1 ...
|
||
|
goto end
|
||
|
)
|
||
|
|
||
|
svn pset svn:keywords id %*
|
||
|
svn pset svn:eol-style native %*
|
||
|
|
||
|
:end
|