top of page
- API -
fileList = reaper.AZ_SVN_GetAddAndUpdateList(repositoryUrl, revision, excludeList, isRegex)
- API Detail-
▼Input value
- repositoryUrl(string) : Repository URL
- revision() : Revision
- excludeList(StringArray) : Exclude list (optional, default: empty)
- isRegex(boolean) : Regular expression (optional, default: true)
▼Output value
- fileList(StringArray) :List of added/updated files
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
localPath = "D:\\test\\new-repo"
fileList = reaper.AZ_SVN_GetAddAndUpdateList(localPath, -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