[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] Re: should .subversion/config hint to ignore .DS_Store?

From: <cmpilato_at_collab.net>
Date: 2003-08-10 18:31:10 CEST

Robert Spier <rspier@pobox.com> writes:

> > > In the hope of preventing such a discussion, I'll point out a
> > > counter-example in Subversion's own tree - the rcsparse module used by
> > > cvs2svn is a cvs working copy checked into subversion, in order to allow
> > > easy updating from that external project.
> > And?
> > Having something in the default global-ignores doesn't mean you can't
> > add that thing to version control. And certainly once it's in version
> > control, it's in.
>
> Would overriding the ignore list[1] be as simple as doing:
>
> svn add CVS
>
> in the particular directory?

"*.o" is in the global ignores list, and would behave exactly the same
way "CVS" would in that list. Let's see if your desired behavior is
present:

   $ echo `date` > file.o
   $ mkdir dir.o
   $ svn add file.o
   A file.o
   $ svn add dir.o
   A dir.o
   $ svn st
   A dir.o
   A file.o
   $ svn ci -m 'log message'
   Adding dir.o
   Adding file.o
   Transmitting file data .
   Committed revision 2.
   $

Yep, I'd say that works just fine.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Aug 10 18:33:45 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.