Reputation: 1953
Now my team is trying to add code review practices into development process, and I have deployed Review Board.
Below is a typical scenario:
My question is:
Is it possible that when developer close the review request in Step 7, the code will be committed into SVN automatically at the same time, rather than using TortoiseSVN to commit in step 8?
Upvotes: 2
Views: 1003
Reputation: 962
As per my understanding, there is no such option. But then you can come up with a pre-commit hook script which will automatically create the review board request based on the description provided. But then this will always slow down the commit process. And integrating review board with SVN commit operation is not a good idea since the reviews takes time usually.
Upvotes: 1