Re: svn unlock all files locked by a specific user

Sean McBride <[email protected]> Wed, 19 Mar 2025 15:58:57 -0400
Newsgroups gmane.comp.version-control.subversion.user
Message-ID <[email protected]>
Thanks to you both.

I ended up doing this on the server:

```
svnadmin lslocks /usr/local/repositories/reponame/ | grep -B3 "Owner: 
alice" | grep "Path: " | sed 's/^Path: \//svn unlock --force "/' | sed 
's/$/"/' > ~/svnunlock.sh
```

then running that result on my own computer against my local working 
copy.

Sean