How can I know how long lasted the checkout?
I'm configured a project to run nightly. After a while we switched the SVN server location and I want to know the differences in t开发者_如何学Pythonhe time duration, including the checkout.
Is there a place to see it?
Run the checkout script/command with time
in front of it.
E.g. do time svn checkout
instead of your normal svn checkout
.
That depends entirely on your environment. The SVN executable does not output any timing information by itself, but nothing stops you or your build environment from noting the start and end time of the process and calculating the difference. In MSBuild for example, you can specify the /v:diag switch to get very verbose output, including timing information for all the targets and tasks.
精彩评论