Changes between Version 1 and Version 2 of SvnInfo


Ignore:
Timestamp:
10/26/09 13:15:38 (14 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SvnInfo

    v1 v2  
     1= Subversion Information =
     2
     3== Documentation ==
     4 * [http://svnbook.red-bean.com/nightly/en/index.html Version Control with Subversion]
     5 * [http://subversion.tigris.org/ SVN Homepage]
     6
     7== Using Subversion ==
     8==== Command to check out the trunk from a project ====
     9{{{
     10% svn co https://svn.version.fz-juelich.de/PROJECT/trunk  my_working_copy_of_trunk
     11}}}
     12For further information see the following [SvnExample example] of a tyical subversion session.
     13
    114== Email Notification ==
    215To get an email, if something in the repository is changed, a property email has to be set.
     
    1326
    1427== Ignoring Unversioned Files ==
    15 svn propedit svn:ignore <directory>
     28The svn:ignore property contains a list of file patterns which e.g. svn commit will ignore. Example: Ignore all LaTeX log files.
     29{{{
     30% svn status
     31M      report.tex
     32?      report.log
     33
     34svn propedit svn:ignore .
     35}}}
     36Contents of the ignore property:
     37{{{
     38*.log
     39}}}
     40The log files aren's displayed furthermore.
     41{{{
     42% svn status
     43M      report.tex
     44}}}