El directorio ~/.subversion
contiene algunos ficheros de control:
pp2@nereida:~/Lbook$ tree /home/pp2/.subversion/ /home/pp2/.subversion/ |-- README.txt |-- auth | |-- svn.simple | | |-- 0538d14359bc5c0 | | |-- 16dbf53b0205461 | | `-- 7cb71bc67c219b9 | |-- svn.ssl.server | `-- svn.username |-- config `-- servers 4 directories, 6 filesFichero
~/.subversion/config
establece la configuración por defecto.
Utiliza el formato de configuración INI.
Para establecer propiedades en términos
de las extensiones de los ficheros debe rellenarse
la sección auto-props
:
### Set enable-auto-props to 'yes' to enable automatic properties ### for 'svn add' and 'svn import', it defaults to 'no'. ### Automatic properties are defined in the section 'auto-props'. enable-auto-props = yes ### Section for configuring automatic properties. [auto-props] ### The format of the entries is: ### file-name-pattern = propname[=value][;propname[=value]...] ### The file-name-pattern can contain wildcards (such as '*' and ### '?'). All entries which match will be applied to the file. ### Note that auto-props functionality must be enabled, which ### is typically done by setting the 'enable-auto-props' option. *.c = svn:eol-style=native *.cpp = svn:eol-style=native *.h = svn:eol-style=native # *.dsp = svn:eol-style=CRLF # *.dsw = svn:eol-style=CRLF *.sh = svn:eol-style=native;svn:executable *.pl = svn:eol-style=native;svn:executable # *.txt = svn:eol-style=native *.png = svn:mime-type=image/png *.jpg = svn:mime-type=image/jpeg Makefile = svn:eol-style=nativeCasiano Rodríguez León