You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by Apache Wiki <wi...@apache.org> on 2005/12/10 03:05:09 UTC

[Geronimo Wiki] Update of "GettingSourceCode" by JohnSisson

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Geronimo Wiki" for change notification.

The following page has been changed by JohnSisson:
http://wiki.apache.org/geronimo/GettingSourceCode

The comment on the change is:
information about subversion client config (taken from commons wiki.. thanks!)

------------------------------------------------------------------------------
      
  Remember to replace 'your-username' and 'your-password' with your actual username and password on svn.apache.org.
  
+ 
+ = Subversion client config =
+ Add this to your subversion client configuration file:
+ 
+ '''Note:''' make sure the settings are merged into the appropriate section if it already exists, 
+ as duplicate section names can cause problems.
+ 
+ Possible locations of your subversion client configuration
+  * Windows: C:\Documents and Settings\yourname\Application Data\Subversion\config
+  * Linux: ~/.subversion/config
+ 
+ {{{
+ [miscellany]
+ global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store build dist target
+ enable-auto-props = yes
+ 
+ [auto-props]
+ *.c = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.cpp = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.h = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.dsp = svn:eol-style=CRLF
+ *.dsw = svn:eol-style=CRLF
+ *.sh = svn:executable;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.cmd = svn:mime-type=text/plain;svn:eol-style=CRLF
+ *.bat = svn:mime-type=text/plain;svn:eol-style=CRLF
+ Makefile = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.obj = svn:mime-type=application/octet-stream
+ *.bin = svn:mime-type=application/octet-stream
+ *.bmp = svn:mime-type=image/bmp
+ *.class = svn:mime-type=application/java
+ *.doc = svn:mime-type=application/msword
+ *.exe = svn:mime-type=application/octet-stream
+ *.gif = svn:mime-type=image/gif
+ *.gz = svn:mime-type=application/x-gzip
+ *.jar = svn:mime-type=application/java-archive
+ *.jpg = svn:mime-type=image/jpeg
+ *.jpeg = svn:mime-type=image/jpeg
+ *.pdf = svn:mime-type=application/pdf
+ *.png = svn:mime-type=image/png
+ *.tgz = svn:mime-type=application/octet-stream
+ *.tif = svn:mime-type=image/tiff
+ *.tiff = svn:mime-type=image/tiff
+ *.zip = svn:mime-type=application/zip
+ *.txt = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.xml = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.ent = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.dtd = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.xsd = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.xsl = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.wsdl = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.htm = svn:mime-type=text/html;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.html = svn:mime-type=text/html;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.css = svn:mime-type=text/css;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.js = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.jsp = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.txt = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.java = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.properties = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ *.sql = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
+ }}}
+