How To List A Specific Directories In The Svn Pre-commit Hook
I want to list specific directories in the SVN pre-commit Hook when I use svn list [repor_path] command I got this result : svn list http://SB-LAP163W/svn/TEST/RC | findstr 13.1
Solution 1:
If your path you want to list does not correspond with the changed directory but is fixed then just try
svnlook tree svn/ILS/PC | grep -E '13\.10.*/'
You will get all folders fulfilling the regexp.
If there are some dependencies to changed files/folders or the commit message use a script as in SVN (server - pre-commit hook): Know the list of files that are being committed
Post a Comment for "How To List A Specific Directories In The Svn Pre-commit Hook"