Author: stsp
Date: Sat Apr 13 14:08:28 2013
New Revision: 1467637
URL: http://svn.apache.org/r1467637
Log:
* publish/docs/release-notes/1.8.html: 'svn info' shows moves, too, so extend
the existing section about 'svn status' accordingly.
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=1467637&r1=1467636&r2=1467637&view=diff
==============================================================================
--- subversion/site/publish/docs/release-notes/1.8.html (original)
+++ subversion/site/publish/docs/release-notes/1.8.html Sat Apr 13 14:08:28 2013
@@ -311,15 +311,16 @@ for more information.</p>
</div>
-<div class="h4" id="svn-status">
-<h4><tt>svn status</tt> now shows moves
- <a class="sectionlink" href="#svn-status"
+<div class="h4" id="svn-status-info-moves">
+<h4><tt>svn status</tt> and <tt>svn info</tt> now show moves
+ <a class="sectionlink" href="#svn-status-info-moves"
title="Link to this section">¶</a>
</h4>
<p><tt>svn status</tt> now shows moves in its output.
See the <a href="#moves">section about moves</a> for more information.</p>
+<tt> svn status</tt> shows an extra line for each item involved in a move:
<pre>$ svn move epsilon/zeta zeta-moved
$ svn status
D epsilon/zeta
@@ -329,6 +330,19 @@ A + zeta-moved
$
</pre>
+<tt> svn info</tt> shows extra lines for moved items, too.
+For example, if the file <tt>beta</tt> was moved to <tt>beta-new</tt>,
+<tt>svn info beta</tt> will show the following (some unrelated output
+has been omitted in this example):
+<pre>
+$ svn info beta
+Path: beta
+[...]
+Schedule: delete
+<b>Moved To: beta-new</b>
+[...]
+</pre>
+
</div>
<div class="h4" id="svn-info">