blob: 6a5b5c08fae58302a55b1af647e08d2466117324 [file] [log] [blame]
<?php
set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path());
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
$App = new App();
$Nav = new Nav();
$Menu = new Menu();
include($App->getProjectCommon());
# All on the same line to unclutter the user's desktop'
#*****************************************************************************
#
# template.php
#
# Author: Igor Vinnykov
# Date: 2007-11-23
#
# Description: Autogenerated for eclipse.org site pages from Eclipse IDE help
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Subversive - Documentation";
$pageKeywords = "Subversive, Subversion, SVN, Team Provider, documentation, user guid";
$pageAuthor = "Igor Vinnykov";
include("_projectCommon.php"); # All on the same line to unclutter the user's desktop'
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
<h3>Branching</h3>
<p>Branching means creating a new line of development on the repository location. This may be useful in a different cases, for example if different clients wish to get the same product but with some differences in functionality. Of course it's not convenient to create both products from the beginning to the end separately, so the developers create branches. To do the same the user should click on <i>'Team>Branch...'</i> menu item of the resource pop-up menu, <i>'Branch...'</i> menu item of the SVN main menu group or on the <i>'Branch...'</i> button on the <i>'SVN Toolbar'</i>. The dialog will appear to help you create a branch.</p>
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td valign="top" align="left">
<p align="left">
<i>
<b>Tip:</b>
</i>
</p>
</td>
<td valign="top">
<p>
<i>
It's recommended to create branches in the repository's 'branch' folder corresponding to the specified repository layout. For information on repository layouts refer to <a href="../layouts.php">'Repository layouts'</a> topic.
</i>
</p>
</td>
</tr>
</table>
<p>This is how the <i>'Create Branch Dialog'</i> looks like:</p>
<img border = "0" src="../../images/branch.png" alt="Create Branch dialog"/>
<br/>
<br/>
<table cellpadding="5" cellspacing="0" border="1" width="100%">
<tr>
<td class="header" align ="center" valign="center">Option</td>
<td class="header" align ="center" valign="center">Description</td>
<td class="header" align ="center" valign="center">Default</td>
</tr>
<tr>
<td align ="center" valign="center">Branch</td>
<td align ="center" valign="center">Specifies the name of the branch folder</td>
<td align ="center" valign="center">'blank'</td>
</tr>
<tr>
<td align ="center" valign="center">Start working in a branch</td>
<td align ="center" valign="center">If enabled associates your workspace with the created branch.</td>
<td align ="center" valign="center">Disabled</td>
</tr>
<tr>
<td align ="center" valign="center">Freeze svn:externals</td>
<td align ="center" valign="center">Locks a probability of adding svn:externals for a branch.</td>
<td align ="center" valign="center">Disabled</td>
</tr>
</table>
<br/>
<img border="0" src="../../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../../gettingStarted/subversion/svn_folders.php">Trunk, Branches and Tags</a>
<br/>
<a href="../../teamSupport/svn_main_menu.php">SVN main menu group</a>
<br/>
<a href="../../teamSupport/svn_toolbar.php">SVN Toolbar</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>