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
On 2025/03/18 23:27:58 Yasuhito FUTATSUKI wrote:
> Hello,
>
> On 2025/03/19 3:21, Michael Osipov wrote:
> > On 2025/03/18 16:41:07 Nathan Hartman wrote:
> >> On Tue, Mar 18, 2025 at 10:09 AM Michael Osipov
> >> wrote:
> >>
> >>> Folks,
> >>>
> >>> the configure script for 1.14.5 gives me:
> >>>
Hi all,
Is there an easy way to force unlock all files currently locked by a specific
user?
Consider an employee that leaves, and needing to then unlock anything she still
had locked.
Thanks,
Sean
On 2025-03-19 19:10, Sean McBride wrote:
Is there an easy way to force unlock all files currently locked by a specific
user?
It's easy enough to get a full list:
https://svnbook.red-bean.com/nightly/en/svn.advanced.locking.html#svn.advanced.locking.break-steal
grep -B3 [...], grep, awk/cu