bsabiston
bsabiston

Reputation: 751

Perforce stream - can you exclude a directory but include specific files in that directory?

I have a Perforce stream where I am excluding certain binary folders, as in exclude Binaries/Win64/...

But there are a couple of files in that directory that I do want in the stream. Is there a way to list exceptions to the exclusion?

Upvotes: 0

Views: 498

Answers (1)

Samwise
Samwise

Reputation: 71562

You can always override a more general rule with a more specific one:

share ...
exclude Binaries/Win64/...
share Binaries/Win64/foo
share Binaries/Win64/bar

Upvotes: 1

Related Questions