top of page
- API -

reaper.AZ_SVN_SetAuth(userName, password)

- API Detail-

▼Input value

  • userName(string) : User name
  • password(string) : Password

▼Output value


※To use this API, you must install svn.

※If user authentication is required in your svn server settings, you must enable it.

- 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