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

RE: switch to ignore files that have not been checked in?

From: Bob Archer <Bob.Archer_at_amsi.com>
Date: Thu, 12 Jan 2012 10:22:50 -0500

> I'm trying to add properties to a bunch of files that have a common file
> extension, but are not the only files in the directory/directories.
>
> I would like to run something like:
>
> svn propset svn:needs-lock '*' *.png *.jpg *.vsd
>
> The problem is that I have a number of temporary files in the working directory
> that match the pattern but are not and should not be checked in. The problem
> with using the convenience of shell patterns is that subversion aborts as soon as
> it processes a file that is not already checked in. It also aborts even if a file or
> directory has the svn:ignore property set.
>
> I don't know of an easy way to match all the files that match a shell pattern and
> are also already checked in. (Which would be a clunky workaround for not
> having the following:)
>
> I'd like to use a switch such as:
>
> svn --ignore-non-checked-in-files propset svn:needs-lock '*' *.png *.jpg *.vsd
>
> Does such a switch already exist? Such a switch would tell subversion
> commands to silently ignore files and directories that have not been checked
> in. The opposite already exists. If I run svn add *.png, the "svn add" command
> runs, but complains harmlessly if a file has already been checked in. "svn add"
> does not halt if it encounters a file that has already been checked in.

Can you not just do a clean checkout and run the command. This way there won't be any un-versioned files.

BOb
Received on 2012-01-12 16:23:33 CET

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.