Subversion Status without working copy

Hello All,

I am using FinalBuilder 6.0 for automating the Build Process.

I have a requirment please let me know how it can be done through FB.

We check out source code from the Subversion (TortoiseSVN ) then compile
and make the build every day.Finally we delete all source codes from the machine
because we dont want to keep a copy in local machine and aslo it will increase the drive size.

Now, instead of checking out all source codes everyday is there a way that we can
check if there is any update and then check out.

I went through the Subversion Status which requires the working copy to be in the
machine to get the status.

Is there any other way to check status without keeping the working copy in the local machine.

Also please let me know how effective we can use Subversion status , to get the status when a file
is modified , Added or Deleted from the repository.

My Advance Thanks.

The subversion log command will do what you need :

http://svnbook.red-bean.com/en/1.1/re15.html

You can use the Subversion Generic action to run the command, if you use the xml output option then you should be able extract the information from the output file using the xml actions. This is exactly what we do in the FinalBuilder Server Subversion Trigger.

Now that I think of it, if you want to only build when something has changed, then consider using FinalBuilder Server, as that is exactly what it is designed to do.

HI Vincent Parrett

Thanks !