The recommended Subversion directory layout contains trunk, tags and branches directories:
Project
|-branches
|- ...
|-tags
|- ...
|-trunk
Is there a generic name for referring to the three directories: trunk, tags, and branches? Let's say for naming a variable: list x = ["branches/...", "tags/...", "trunk" ].)
I have seen it called the common repository layout. See Use a sane repository layout and Repository Layout.
So, I guess you could call them the common repository layout directories. (That is not much shorter than enumerating them though.:-)
So, for naming a variable:
commonRepoDirsorcommon_repo_dirs(depending on the conventions of your programming language).