top of page
- API -

fileList = reaper.AZ_SVN_GetAddAndUpdateList(repositoryUrl, revision, excludeList, isRegex)

- API Detail-

▼Input Values

  • repositoryUrl(string) : Repository URL
  • revision() : Revision
  • excludeList(StringArray) : Exclusion list (optional, default: empty)
  • isRegex(boolean) : Whether it is a regular expression (optional, default: true)

▼Output Values

  • fileList(StringArray) : List of added/updated files

※To use this API, you must have svn installed.

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())        

require("reaper_AZSTOKE_GOLD")        

       

userName = "testuser"

password = "testpass"


url = -- SVNリポジトリのurl


AZ_SVN_SetAuth(userName , password )


fileList = reaper.AZ_SVN_GetAddAndUpdateList(url, -1, {".*txt"}, true)


ShowObject(fileList)

SVN

AZ_SVN_GetAddAndUpdateList

Supported versions:

1.3.0

onwards

Get list of additions/updates at commit time

bottom of page