From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 108872 invoked by alias); 9 Oct 2019 00:20:37 -0000 Mailing-List: contact gcc-cvs-wwwdocs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-cvs-wwwdocs-owner@gcc.gnu.org Received: (qmail 108806 invoked by uid 9119); 9 Oct 2019 00:20:37 -0000 Date: Wed, 09 Oct 2019 00:20:00 -0000 Message-ID: <20191009002037.108803.qmail@sourceware.org> From: jsm28@gcc.gnu.org To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. cdc7bf90357701877546f8bac160d0fb9e20b334 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: d4506304338216a4a5fd741ebc43bc90c2238641 X-Git-Newrev: cdc7bf90357701877546f8bac160d0fb9e20b334 X-SW-Source: 2019/txt/msg00252.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via cdc7bf90357701877546f8bac160d0fb9e20b334 (commit) from d4506304338216a4a5fd741ebc43bc90c2238641 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit cdc7bf90357701877546f8bac160d0fb9e20b334 Author: Joseph Myers Date: Wed Oct 9 00:20:20 2019 +0000 Document web pages as managed via git. diff --git a/htdocs/about.html b/htdocs/about.html index 19dd080..30a5c94 100644 --- a/htdocs/about.html +++ b/htdocs/about.html @@ -19,7 +19,7 @@ many contributors .

-

The web pages are under CVS control. +

The web pages are under git control. The pages on gcc.gnu.org are updated directly after a change has been committed. www.gnu.org is updated once a day at 4:00 -0700 (PDT).

@@ -48,20 +48,16 @@ a higher chance of being implemented soon. ;-)


-

Using the CVS repository

+

Using the git repository

-

Assuming you have both CVS +

Assuming you have both git and SSH installed, you can check out the web pages as follows:

    -
  1. Set CVS_RSH in your environment to ssh.
  2. -
  3. cvs -q -d :ext:username@gcc.gnu.org:/cvs/gcc checkout --P wwwdocs where username is your user name at gcc.gnu.org
  4. +
  5. git clone git+ssh://username@gcc.gnu.org/sourceware/projects/gcc-home/wwwdocs.git + where username is your user name at gcc.gnu.org
-

For anonymous access, use --d :pserver:cvs@gcc.gnu.org:/cvs/gcc instead.

-

Validating a change

@@ -76,14 +72,14 @@ the W3 Validator. Just use the and prefer that each checkin be of a complete, single logical change.

    -
  1. Sync your sources with the master repository via "cvs -update". +
  2. Sync your sources with the master repository via "git pull". This will also identify any files in your local tree that you have modified.
  3. -
  4. We recommend reviewing the output of "cvs diff".
  5. +
  6. We recommend reviewing the output of "git diff".
  7. -
  8. Use "cvs commit" to check in the patch.
  9. +
  10. Use "git commit" and "git push origin +master" to check in the patch.
  11. Upon checkin a message will be sent to the gcc-cvs-wwwdocs mailing list.
  12. diff --git a/htdocs/contribute.html b/htdocs/contribute.html index 91fa65a..499dfe8 100644 --- a/htdocs/contribute.html +++ b/htdocs/contribute.html @@ -152,7 +152,7 @@ validator.

    Please mark patches with the tag [wwwdocs] in the subject line.

    -

    More about our web pages.

    +

    More about our web pages.

    Submitting Patches

    diff --git a/htdocs/svn.html b/htdocs/svn.html index 5e93115..2b90966 100644 --- a/htdocs/svn.html +++ b/htdocs/svn.html @@ -22,7 +22,7 @@ GCC that is in our repository.

    In addition you can browse our SVN history online.

    -

    (Our web pages are managed via CVS.)

    +

    (Our web pages are managed via git.)

    Using the SVN repository

    diff --git a/htdocs/svnwrite.html b/htdocs/svnwrite.html index 057a66a..1a22133 100644 --- a/htdocs/svnwrite.html +++ b/htdocs/svnwrite.html @@ -12,7 +12,7 @@

    We have read/write access to the SVN repository available for maintainers and significant developers.

    -

    Our web pages are managed via CVS.

    +

    Our web pages are managed via git.


    Contents

    ----------------------------------------------------------------------- Summary of changes: htdocs/about.html | 22 +++++++++------------- htdocs/contribute.html | 2 +- htdocs/svn.html | 2 +- htdocs/svnwrite.html | 2 +- 4 files changed, 12 insertions(+), 16 deletions(-) hooks/post-receive -- gcc-wwwdocs