top of page
- API -
reaper.AZ_SVN_SetAuth(userName, password)
- API Detail-
▼Input value
- userName(string) : User name
- password(string) : Password
▼Output value
*This must be executed if user authentication is required in the svn server settings.
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
userName = "testuser"
password = "testpass"
url = -- SVNリポジトリのurl
localPath = "D:\\test"
reaper.AZ_SVN_SetAuth(userName, password)
reaper.AZ_SVN_CheckoutOrUpdate(url, localPath, 1)
Msg("ErrorCode: " .. reaper.AZ_GetErrorCode())
SVN
AZ_SVN_SetAuth
Supported versions:
1.3.0
onwards
Set SVN credentials

bottom of page