svn-administraton

SVN Show Log not working

ⅰ亾dé卋堺 提交于 2019-12-23 22:25:41
问题 How can I use the show log feature without setting [/] * = r (reads to everyone/everything). I have a couple of groups in my authz file. It Looks like this: [groups] Profs = dave,bruno,franck Team1 = 1036091,1036103,1036087 Team2 = 1016059,1016077 [/GSS] @Team1 = rw [/Booking] @Team2 = rw [/] @Profs = rw When I add [/] * = r in the file, the show log feature works. But that gives access to everyone on all the repositories. This related question has not been answered. 回答1: I experienced

Show Log and SVN Works Only With “All Can Read” Option in authz File

荒凉一梦 提交于 2019-12-13 07:37:47
问题 I am using SVN and and only if I set at file authz * = r then I can view log messages when selecting Show Log from the context menu. Surely this is not what I want - to allow all reads access... I currently use @developer=rw but as I mentioned above this does not work. Please advise Thanks 回答1: You didn't post the whole configuration file here, so my guess is that granting access to developers group doesn't work because you didn't specify members of this group in [group] section. Your

svn dump fails with WScript.Shell

只愿长相守 提交于 2019-12-06 14:46:18
问题 var WshShell = new ActiveXObject("WScript.Shell"); var commandLine = "svnadmin dump " + repoFullPath + " > " + repoName + ".dumpfile"; WshShell.Exec(commandLine) I am trying to run above cscript in Windows but it seems like, it's doing nothing. It doesn't create the dump file. Any mistake that I am doing? 回答1: You have not assigned values to repoFullPath or repoName. Before the Exec line, put WScript.Echo(commandLine); so that you can see what the script is trying to run. 回答2: Create a new

How do I set up access control in SVN?

痴心易碎 提交于 2019-11-26 15:02:14
I have set up a repository using SVN and uploaded projects. There are multiple users working on these projects. But, not everyone requires access to all projects. I want to set up user permissions for each project. How can I achieve this? Stephen Bailey In your svn\repos\YourRepo\conf folder you will find two files, authz and passwd . These are the two you need to adjust. In the passwd file you need to add some usernames and passwords. I assume you have already done this since you have people using it: [users] User1=password1 User2=password2 Then you want to assign permissions accordingly with

How do I set up access control in SVN?

和自甴很熟 提交于 2019-11-26 04:08:21
问题 I have set up a repository using SVN and uploaded projects. There are multiple users working on these projects. But, not everyone requires access to all projects. I want to set up user permissions for each project. How can I achieve this? 回答1: In your svn\repos\YourRepo\conf folder you will find two files, authz and passwd . These are the two you need to adjust. In the passwd file you need to add some usernames and passwords. I assume you have already done this since you have people using it: