You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/06/13 12:39:36 UTC

svn commit: r1349739 - /subversion/site/publish/docs/release-notes/1.8.html

Author: stsp
Date: Wed Jun 13 10:39:36 2012
New Revision: 1349739

URL: http://svn.apache.org/viewvc?rev=1349739&view=rev
Log:
* publish/docs/release-notes/1.8.html: Rough description of moves in 1.8.

Modified:
    subversion/site/publish/docs/release-notes/1.8.html

Modified: subversion/site/publish/docs/release-notes/1.8.html
URL: http://svn.apache.org/viewvc/subversion/site/publish/docs/release-notes/1.8.html?rev=1349739&r1=1349738&r2=1349739&view=diff
==============================================================================
--- subversion/site/publish/docs/release-notes/1.8.html (original)
+++ subversion/site/publish/docs/release-notes/1.8.html Wed Jun 13 10:39:36 2012
@@ -32,6 +32,8 @@ describes what is planned for the releas
 </h2>
 
 <ul>
+  <li><a href="#moves"
+      >Working copy records moves as first-class operation</a></li>
   <li><a href="#gpg-agent"
       >In-memory password caching via GnuPG (<em>Unix client</em>)</a></li>
   <li><a href="#enhancements"
@@ -97,6 +99,12 @@ and what impact these changes may have.<
     <th>Minimum Repository</th>
     <th>Notes</th></tr>
   <tr>
+    <td><a href="#moves">working copy records moves</a></td>
+    <td>1.8</td>
+    <td>any</td>
+    <td>any</td>
+    <td></td></tr>
+  <tr>
     <td><a href="#neon-deleted">ra_neon removed</a></td>
     <td>1.8</td>
     <td>any</td>
@@ -267,6 +275,31 @@ about these problems.</p>
     title="Link to this section">&para;</a>
 </h2>
 
+<div class="h3" id="moves">
+<h3>Working copy records moves as first-class operation
+  <a class="sectionlink" href="#moves"
+    title="Link to this section">&para;</a>
+</h3>
+
+<p>The effect of the <code>svn move</code> command is now different
+from running <code>svn copy</code> followed by <code>svn delete</code>.
+Moves are represented as a copy and a delete which are linked to one another.
+These links are shown by <code>svn status</code> and <code>svn info</code>.</p>
+
+<p>Some Subversion operations will now treat moved files and
+directories specially. Behavioural changes include:
+<ul>
+  <li>Moves can only be comitted if both sides of the move are part of
+      the commit.</li>
+  <li>Some classes of tree conflicts involving moves are automatically
+      resolved. For instance, incoming file edits during an update will
+      automatically be applied to moved files at their new location.</li>
+</ul>
+</p>
+
+</div>  <!-- moves -->
+
+
 <div class="h3" id="gpg-agent">
 <h3>In-memory password caching via GnuPG (<em>Unix client</em>)
   <a class="sectionlink" href="#gpg-agent"