HI... Im trying to make a svn hook to check the first commit in repository. SVN Hook dont support "Add". So if i get the first commit, i can simulate the first entery of file in repository. I dont have any ideias, please help.

link|improve this question
feedback

1 Answer

I assume you are in the pre-commit hook. You can use svnlook command like the following

svnlook changed -t TXN REPOS_PATH

to get the information about files/folders which have been added etc. Furthermore you can check by

svnlook youngest REPOS_PATH

which revision does the repository have at the moment so the combination of the svnlook youngest and the above svnlook changed should solve your problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.