Edgewall Software

Changes between Version 372 and Version 373 of TracInstall


Ignore:
Timestamp:
Aug 18, 2014, 6:09:10 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Version control systems are optional since Trac 1.0.

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v372 v373  
    228228For the other [DatabaseBackend database backends] you should plan ahead and already have a database ready to use at this point.
    229229
    230 Since 0.12, Trac doesn't ask for a [TracEnvironment#SourceCodeRepository source code repository] anymore when creating an environment. Repositories can be [TracRepositoryAdmin added] afterwards, or the version control support can be disabled completely if you don't need it.
     230Since 0.12, Trac doesn't ask for a [TracEnvironment#SourceCodeRepository source code repository] anymore when creating an environment. Repositories can be [TracRepositoryAdmin added] afterwards, and support for specific version control systems is disabled by default.
    231231
    232232Also note that the values you specify here can be changed later by directly editing the [TracIni conf/trac.ini] configuration file.
     
    281281mv /tmp/deploy/* /usr/share/trac
    282282}}}
    283 Don't forget to check that the web server has the execution right on scripts in the /usr/share/trac/cgi-bin directory.
     283Don't forget to check that the web server has the execution right on scripts in the `/usr/share/trac/cgi-bin` directory.
    284284
    285285
     
    376376== Finishing the install
    377377
     378=== Enable version control components
     379
     380Support for version control systems is provided by optional components in Trac and the components are disabled by default //(since 1.0)//. Subversion and Git must be explicitly enabled if you wish to use them. See TracRepositoryAdmin for more details.
     381
     382The components can be enabled by adding the following to the `[components]` section of your [TracIni#components-section trac.ini], or enabling the components in the "Plugins" admin panel.
     383
     384{{{
     385tracopt.versioncontrol.svn.* = enabled
     386}}}
     387
     388{{{
     389tracopt.versioncontrol.git.* = enabled
     390}}}
     391
     392After enabling the components, repositories can be configured through the "Repositories" admin panel or by editing [TracIni#repositories-section trac.ini].
     393
    378394=== Automatic reference to the SVN changesets in Trac tickets ===
    379395