top of page
- API -
revision = reaper.AZ_SVN_Commit(localPath, message, excludeList, isRegex)
- API Detail-
▼Input value
- localPath(string) : Local path
- message(string) : Message
- excludeList(StringArray) : Exclude list (optional, default: empty)
- isRegex(boolean) : Regular expression (optional, default: true)
▼Output value
- revision(integer) : Committed revision
※To use this API, you must install svn.
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
userName = "testuser"
password = "testpass"
localPath = "D:\\test\\new-repo"
reaper.AZ_SVN_SetAuth(userName, password)
revision = reaper.AZ_SVN_Commit(localPath, "AZSTOKE commit!", {".*txt"}, true)
Msg(revision)
SVN
AZ_SVN_Commit
Supported versions:
1.3.0
onwards
Commit to SVN repository

bottom of page






