Perforce: how to disable access to the same folder across streams -
is possible make read specific folder across streams? if so, can please tell me how it?
i tried like:
read user * * //depot/*/unity/assets/scripts/framework/...
didn't work.
you can, have first sure no other permission levels granted path because protect allow highest granted permission.
so e.g. have standard protect table:
write user * * //... super user gweiss * //... even if subsequently add:
read user * * //depot/*/unity/assets/scripts/framework/... the write user line grants write permission folder. can around this, first adding line remove permissions path in question:
read user * * -//depot/*/unity/assets/scripts/framework/... read user * * //depot/*/unity/assets/scripts/framework/... note if have '-' path, doesn't matter permission level have in first column of protect line. it'll remove permissions. in next line, you've granted read access, users once again have read access path no other permission.
Comments
Post a Comment