blob: 4dfa4d2461cb07cae2883198551836ec2ac4e59d [file] [log] [blame]
Benny Prijonoa12f5a42010-02-19 13:05:08 +00001@echo off
2
3if "%*" EQU "" (
4 echo Usage: svn_pset.bat FILE1 ...
5 goto end
6)
7
8svn pset svn:keywords id %*
9svn pset svn:eol-style native %*
10
11:end