Hi,
I'm trying to use the exclude files from diff feature to exclude specific files/directory in a directory, except one directory.
Say I have a directory A with sub directories B,C,D:
- A
-- B
-- foo.go
-- bar.go
-- C
-- c.go
-- D
-- d.go
x.go
y.go
I want to match everything in A (also the files x.go, y.go), except C and it's content. In .gitignore I would do something like this:
root/A/*
!root/A/C
!root/A/C/**
But it doesn't seems to work as a bitbucket exclude pattern. Is there a workaround for this?
Thanks in advance,
Avishay