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

Re: svn import --no-ignore not implemented

From: John Peacock <jpeacock_at_rowman.com>
Date: 2004-04-25 14:18:12 CEST

Nathaniel Alfred wrote:
> When I tried to import a vendor branch of a hardware driver,
> subversion would ignore the proprietary *.o in the package.
>

As you've discovered, the normal mode of operation is to ignore derived files
(like *.o and *.a). You don't _need_ to use import to load the files, though.
See this link about in-place imports:

        http://subversion.tigris.org/project_faq.html#in-place-import

If you follow this example, you will be able to see that you can use 'svn add'
to load the vendor files (and hence you can set the svn:ignore first).

The other option is that files covered by svn:ignore are only skipped when not
explicitely cited on the command line. You can always do something like this:

        find . -name "*.o" > binaries.txt
        svn add --targets binaries.txt

which _will_ add those files to the repository.

HTH

John

-- 
John Peacock
Director of Information Research and Technology
Rowman & Littlefield Publishing Group
4720 Boston Way
Lanham, MD 20706
301-459-3366 x.5010
fax 301-429-5747
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sun Apr 25 14:18:29 2004

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.