svn组成员太长太乱
svn group members is too long and messy
文件=/svn_repository/conf/authz
其中一个群太长太乱,不好整理。
dev_group=antonio.rudiger,marcos.alonso,andreas.christensen,thiago.silva,trevoh.chalogbah,ben.chilwelll,kenedy.john,reece.james,cesar.azpilicueta,malang.sarr...jorginho
我打算尝试下面的方法,但我不确定它是否有效
senior_group=antonio.rudiger,reece.james
junior_group=marcos.alonso,cesar.azpilicueta
dev_group=${senoir_group}","${junior_group}",andreas.christensen"
这行得通吗?有没有更好的方法?
I'm going to try below method but I'm not sure if it works
它将起作用只要您对“组内组”使用正确的语法(根据旧的,但仍然正确SVN Book note)
Groups can also be defined to contain other groups:
[groups]
calc-developers = harry, sally, joe
paint-developers = frank, sally, jane
everyone = @calc-developers, @paint-developers
文件=/svn_repository/conf/authz
其中一个群太长太乱,不好整理。
dev_group=antonio.rudiger,marcos.alonso,andreas.christensen,thiago.silva,trevoh.chalogbah,ben.chilwelll,kenedy.john,reece.james,cesar.azpilicueta,malang.sarr...jorginho
我打算尝试下面的方法,但我不确定它是否有效
senior_group=antonio.rudiger,reece.james
junior_group=marcos.alonso,cesar.azpilicueta
dev_group=${senoir_group}","${junior_group}",andreas.christensen"
这行得通吗?有没有更好的方法?
I'm going to try below method but I'm not sure if it works
它将起作用只要您对“组内组”使用正确的语法(根据旧的,但仍然正确SVN Book note)
Groups can also be defined to contain other groups:
[groups] calc-developers = harry, sally, joe paint-developers = frank, sally, jane everyone = @calc-developers, @paint-developers