blob: 222f92aaf734da84810c66d65acd7aef57802292 [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>Updating</h3>
<p>Updating means changing the state of the local file copying the remote changes to the local copy if possible. To update the local file click on the <i>'Team>Update'</i> menu item, <i>'Update the resource from version control'</i> button on the <i>'SVN toolbar'</i>, <i>'Update...'</i> menu item in the SVN main menu group or clicking the <i>'Update'</i> button in the <i>'Synchronization View'</i> toolbar. There also may be some conflicts while updating and the user should merge them manually.</p>
<table cellpadding="1" cellspacing="0" border="0">
<tr>
<td valign="top" align="left">
<p align="left">
<i>
<b>Note:</b>
</i>
</p>
</td>
<td valign="top">
<p>
<i>
If the user has updated all the files of specific directory without updating the directory itself its revision won't change. So as revision number is the SVN&reg; property there might be some conflicts during setting of properties, so it's recommended to update the whole directory. Also there might br conflicts while deleting/adding files with the same names both in the working copy and repository one.<br/><br/>If there were some conflicts during the update operation cycle SVN&reg; updates what it can and notify the user about the conflict. Then three file are created: 'name'.mine (copy of the user's local file before update), 'name'.BASEREV (copy of the base revision file) and 'name'.rNEWREV (copy of the repository revision file). So the edit conflicts action must be run to resolve conflicts.
</i>
</p>
</td>
</tr>
</table>
<img border="0" src="../../images/rel_tops.png" alt="Related topics"/>
<br/>
<a href="../../teamSupport/svn_main_menu.php">SVN main menu group</a>
<br/>
<a href="../../teamSupport/svn_toolbar.php">SVN Toolbar</a>
<br/>
<a href="../../teamSupport/workspace_synch.php">SVN Workspace Synchronization</a>
<br/>
<a href="../../teamSupport/compareEditor/compare_ac.php">Another user changes</a>
<br/>
<a href="../../teamSupport/SVNaction/override.php">Overriding operations</a>
<br/>
<br/>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>