如何快速查看SVN当前登录的账号
powershell运行:
Get-ChildItem $env:APPDATA\Subversion\auth\svn.simple | ForEach-Object { "`n[File: $($_.Name)]"; [System.Text.Encoding]::ASCII.GetString([System.IO.File]::ReadAllBytes($_.FullName)) }
结果中,username下方就是当前账号的用户名:
powershell运行:
Get-ChildItem $env:APPDATA\Subversion\auth\svn.simple | ForEach-Object { "`n[File: $($_.Name)]"; [System.Text.Encoding]::ASCII.GetString([System.IO.File]::ReadAllBytes($_.FullName)) }
结果中,username下方就是当前账号的用户名:
如何快速查看SVN当前登录的账号
http://qokorii.cn/archives/3IcmsLnO