Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apply Subversion auto-props after the fact

Tags:

svn

For some reason the auto-props in ~/subversion/config were not applied; specifically Makefile* = svn:eol-style=native;svn:keywords=Id HeadURL. Is there some quick way to apply all current auto-props recursively?

$ grep enable-auto-props ~/.subversion/config | grep -v ^#
enable-auto-props = yes
like image 395
l0b0 Avatar asked Feb 09 '11 10:02

l0b0


1 Answers

Subversion's automatic properties affect only adds and imports (read this). If they are not applied to newly added files, check whether enable-auto-props option is set to yes.

like image 92
pmod Avatar answered Sep 22 '22 13:09

pmod