Re: svn commit: r9916 - trunk/doc/book/book

"C. Michael Pilato" <[email protected]> 01 Jun 2004 07:57:31 -0500
Newsgroups gmane.mail.eyebrowse.devel,gmane.comp.version-control.subversion.svn
Message-ID <m3smdfmo5g.fsf__26447.6636577912$1086097678@localhost.localdomain>
[email protected] writes:

> Author: sussman
> Date: Mon May 31 22:16:26 2004
> New Revision: 9916
> 
> Modified:
>    trunk/doc/book/book/ch03.xml
> Log:
> Slightly modified book patch from Eric Hanchrow <[email protected]>:
> 
> * doc/book/book/ch03.xml:  show 'I' output in 'svn status' section.
> 
> 
> Modified: trunk/doc/book/book/ch03.xml
> ==============================================================================
> --- trunk/doc/book/book/ch03.xml	(original)
> +++ trunk/doc/book/book/ch03.xml	Mon May 31 22:16:26 2004
> @@ -802,6 +802,7 @@
>  ?      foo.o               # svn doesn't manage foo.o
>  !      some_dir            # svn manages this, but it's either missing or incomplete
>  ~      qux                 # versioned as dir, but is file, or vice versa
> +I      .screenrc           # this file is ignored
>  A  +   moved_dir           # added with history of where it came from
>  M  +   moved_dir/README    # added with history and has local modifications
>  D      stuff/fish.c        # this file is scheduled for deletion


This breaks the example.  'svn status' will not show 'I' output unless
--no-ignores is passed to it.  If you plan to show 'I' output in the
example, you should have the example use --no-ignores.

> @@ -912,6 +913,19 @@
>                  and created a directory in its place, without using the
>                  <command>svn delete</command> or <command>svn add</command>
>                  commands.</para>
> +            </listitem>
> +          </varlistentry>
> +
> +          <varlistentry>
> +            <term><computeroutput>I      file_or_dir</computeroutput></term>
> +            <listitem>
> +              <para>Subversion is <quote>ignoring</quote> the file or
> +                directory <filename>file_or_dir</filename>, probably
> +                because you told it to.  For more information on ignored
> +                files, see <xref linkend="svn-ch-7-sect-2.3.3"/>.
> +                Note that this symbol only shows up if you pass the
> +                <option>--no-ignore</option> option to <command>svn
> +                status</command>.</para>
>              </listitem>
>            </varlistentry>

See, you even said you yourself.  :-)