You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/11/12 15:07:42 UTC

[commons-rng] branch master updated: Fix update instructions for the website.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git


The following commit(s) were added to refs/heads/master by this push:
     new 67d5ceb  Fix update instructions for the website.
67d5ceb is described below

commit 67d5cebecf6f0b7afcefbfa103d7473f0a049720
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Nov 12 15:07:38 2019 +0000

    Fix update instructions for the website.
---
 doc/release/release.howto.txt | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/doc/release/release.howto.txt b/doc/release/release.howto.txt
index 5876724..9a7578e 100644
--- a/doc/release/release.howto.txt
+++ b/doc/release/release.howto.txt
@@ -691,10 +691,15 @@ reports and require developer insight. If in doubt do not delete files.
 
 The following commands are useful:
 
+Reverting:
+
+  $ svn status | grep ^M
+  $ svn status | awk '{if ($1 == "M") print $2 }' | xargs svn revert
+
 Deleting (**do not** delete old javadocs):
 
   $ svn status | grep -v javadocs | grep ^!
-  $ svn status | grep -v javadocs | awk '{if ($1 == "?") print $2 }' | xargs svn del
+  $ svn status | grep -v javadocs | awk '{if ($1 == "!") print $2 }' | xargs svn del
 
 Adding: