You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Dongsheng Song <do...@gmail.com> on 2011/02/04 07:20:00 UTC

Re: svn commit: r989017 - /subversion/trunk/subversion/svn/main.c

On Wed, Aug 25, 2010 at 19:26,  <ju...@apache.org> wrote:
> Author: julianfoad
> Date: Wed Aug 25 11:26:31 2010
> New Revision: 989017
>
> URL: http://svn.apache.org/viewvc?rev=989017&view=rev
> Log:
> * subversion/svn/main.c
>  (svn_cl__cmd_table): Mention that --keep-local implies --force in
>    the delete command.
>
> Modified:
>    subversion/trunk/subversion/svn/main.c
>
> Modified: subversion/trunk/subversion/svn/main.c
> URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/main.c?rev=989017&r1=989016&r2=989017&view=diff
> ==============================================================================
> --- subversion/trunk/subversion/svn/main.c (original)
> +++ subversion/trunk/subversion/svn/main.c Wed Aug 25 11:26:31 2010
> @@ -543,7 +543,7 @@ const svn_opt_subcommand_desc2_t svn_cl_
>      "    committed, are immediately removed from the working copy\n"
>      "    unless the --keep-local option is given.\n"
>      "    PATHs that are, or contain, unversioned or modified items will\n"
> -     "    not be removed unless the --force option is given.\n"
> +     "    not be removed unless the --force or --keep-local option is given.\n"
>      "\n"
>      "  2. Each item specified by a URL is deleted from the repository\n"
>      "    via an immediate commit.\n"),
>

Is this still true ?

It's crazy, because I do not expected these PATHs will be deleted when
I give --keep-local option !

--
Dongsheng Song

Re: svn commit: r989017 - /subversion/trunk/subversion/svn/main.c

Posted by Julian Foad <ju...@wandisco.com>.
On Fri, 2011-02-04, Dongsheng Song wrote:
> On Wed, Aug 25, 2010 at 19:26,  <ju...@apache.org> wrote:
> > Author: julianfoad
> > Date: Wed Aug 25 11:26:31 2010
> > New Revision: 989017
> >
> > URL: http://svn.apache.org/viewvc?rev=989017&view=rev
> > Log:
> > * subversion/svn/main.c
> >  (svn_cl__cmd_table): Mention that --keep-local implies --force in
> >    the delete command.
> >
> > Modified:
> >    subversion/trunk/subversion/svn/main.c
> >
> > Modified: subversion/trunk/subversion/svn/main.c
> > URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/main.c?rev=989017&r1=989016&r2=989017&view=diff
> > ==============================================================================
> > --- subversion/trunk/subversion/svn/main.c (original)
> > +++ subversion/trunk/subversion/svn/main.c Wed Aug 25 11:26:31 2010
> > @@ -543,7 +543,7 @@ const svn_opt_subcommand_desc2_t svn_cl_
> >      "    committed, are immediately removed from the working copy\n"
> >      "    unless the --keep-local option is given.\n"
> >      "    PATHs that are, or contain, unversioned or modified items will\n"
> > -     "    not be removed unless the --force option is given.\n"
> > +     "    not be removed unless the --force or --keep-local option is given.\n"
> >      "\n"
> >      "  2. Each item specified by a URL is deleted from the repository\n"
> >      "    via an immediate commit.\n"),
> >
> 
> Is this still true ?
> 
> It's crazy, because I do not expected these PATHs will be deleted when
> I give --keep-local option !

Hi Dongsheng.  This is just to say I have seen your question but I have
not investigated it yet.

- Julian