views:

106

answers:

1

Is there a way to integrate files not in your client spec?

Specifically we've got a directory that contains a large number of static libraries that I build locally (so I don't need them out of source control), and would prefer not to have to pull them down from the server just to do an integrate.

In branch spec:

//project1/project/lib/... //project2/project/external/project1/lib/...

In my client spec:

-//project1/project/lib/... //cleintspec/project1/project/lib/...

+1  A: 

I'm not clear from your question of direction of integration is an issue. But you can integrate from files not in your client spec, but never to files.

An alternative would be to use a branch spec that misses off the library folder mapping. Just copy the current branch spec, and filter that out. Then you can integrate quite happily and the libs will be ignored.

Greg Whitfield