Reputation: 4593
I inherited an SVN server a while ago and I noticed in my authz
file that one of my users had had his username created with a typo in it. He wants me to change it but I'm not sure how to go about doing that. The SVN server has been around for a few years, so he's made commits to the repository.
My initial thought was to just go ahead and delete his user from the authz
file, re-create the user using
htpasswd -md /path/to/repo/authz UserName
Then change all commits performed by his old user to the new one. There's 2 problems with this though:
Is this the only option I have?
Upvotes: 0
Views: 119
Reputation: 97282
pre-revprop-change
hook before editing author of commit)propset
doesn't broke repository, because they are only permitted legal methods of interaction with repo in your casefile:///
-accessible repository and some commits in itPS: do not forget to remind the user to delete the old credentials in his SVN, otherwise cached credentials will be used with expected "Authorisation failed"
Upvotes: 1