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

Re: "System-wide configuration area" and global-ignores

From: Ryan Schmidt <subversion-2005_at_ryandesign.com>
Date: 2005-11-16 16:27:00 CET

On Nov 15, 2005, at 23:09, Matt England wrote:

> I'm still curious as to how one manages subversion-server-wide
> config properties (like global-ignore) in any case, and am a bit
> concerned that there's now clear way (as of yet) that I know of for
> me to do this for my svn-1.2.3 server on redhat9. Also, I'd like
> to know to manage global-ignore/svn:ignore on a per-server, per-
> repo, and per-user basis for one or many files or directories. The
> documentation seems unclear on this.

The ignores are only client-side. Global ignores apply to all working
copies managed with a particular Subversion client program, and
svn:ignore applies to any particular directory regardless of which
client is working on it.

As you discovered, ignore only relates to ignoring the files in
status queries, and also when adding entire directories—ignored files
in the directories don't get added. If you however say "svn add *"
then your shell (not Subversion) expands the * to every file in the
directory, and Subversion will add them all.

If you want to prevent anyone from committing, for example, *.o files
to the repository, you can write a pre-commit hook that gets a list
of all files in the transaction, does pattern matching on them to see
if any prohibited files are listed, and if so, outputs a message to
that effect and exits with a nonzero code, which cancels the commit.
The user then corrects the problem and attempts the commit again.

You can set up a client configuration file as you like, with the set
of global ignores, auto-props and other settings recommended for your
organization, and distribute it to all developers via email, web
page, file sharing volume or whatever.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Nov 16 16:31:17 2005

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

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