Author: stsp
Date: Sat Apr 13 13:46:49 2013
New Revision: 1467629
URL: http://svn.apache.org/r1467629
Log:
* publish/docs/release-notes/1.8.html: Document move-related command-line
output changes for 'svn status' in the output-changes section. Also
mention that 'svn info' now shows repository-relative paths.
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=1467629&r1=1467628&r2=1467629&view=diff
==============================================================================
--- subversion/site/publish/docs/release-notes/1.8.html (original)
+++ subversion/site/publish/docs/release-notes/1.8.html Sat Apr 13 13:46:49 2013
@@ -311,6 +311,45 @@ for more information.</p>
</div>
+<div class="h4" id="svn-status">
+
+<p><tt>svn status</tt> now shows moves in its output.
+See the <a href="#moves" >section about moves</a> for more information.</p>
+
+<pre>$ svn move epsilon/zeta zeta-moved
+$ svn status
+D epsilon/zeta
+ > moved to zeta-moved
+A + zeta-moved
+ > moved from epsilon/zeta
+$
+</pre>
+
+</div>
+
+<div class="h4" id="svn-info">
+<tt>svn info</tt> now includes repository-relative URLs in its output:
+
+<pre>$ svn info README
+Path: README
+Name: README
+Working Copy Root Path: /tmp/svn-trunk
+URL: https://svn.apache.org/repos/asf/subversion/trunk/README
+<b>Relative URL: ^/subversion/trunk/README</b>
+Repository Root: https://svn.apache.org/repos/asf
+Repository UUID: 13f79535-47bb-0310-9956-ffa450edef68
+Revision: 1467597
+Node Kind: file
+Schedule: normal
+Last Changed Author: danielsh
+Last Changed Rev: 1242804
+Last Changed Date: 2012-02-10 15:58:53 +0100 (Fri, 10 Feb 2012)
+Text Last Updated: 2012-09-20 01:33:22 +0200 (Thu, 20 Sep 2012)
+Checksum: a27c71319a591c4eebe2bb81129413947336a7c6
+</pre>
+
+</div>
+
</div> <!-- output-changes -->
<div class="h3" id="neon-deleted">
@@ -637,15 +676,6 @@ from running <tt>svn copy</tt> followed
Moves are represented as a copy and a delete which are linked to one another.
These links are shown by <tt>svn status</tt> and <tt>svn info</tt>.</p>
-<pre>$ svn move epsilon/zeta zeta-moved
-$ svn status
-D epsilon/zeta
- > moved to zeta-moved
-A + zeta-moved
- > moved from epsilon/zeta
-$
-</pre>
-
<p>Some Subversion operations will now treat moved files and directories
specially. Behavioural changes include:</p>
<ul>