>
> /max
>>
>>
>> On Tue, May 4, 2010 at 1:38 PM, Andersen Max <
max.andersen@redhat.com> wrote:
>> Thanks for the tip...but How loong are those updates ?
>>
>> doing an svn update for me takes less than 1 minute, sometimes 1.5 minute.
>>
>> Rob (who is in China) just did it in 90 seconds from a coffee shop.
>>
>> What is the time for you ?
>>
>> /max
>>
>> On May 4, 2010, at 11:01, Yahor Radtsevich wrote:
>>
>>> Hi All,
>>>
>>> If you, like me, are annoyed by looooong time of trunk updates, there is a SVN feature to skip directories you do not use. This feature is called 'Sparse Directories'.
>>>
>>> For example, to delete directory 'documentation' from your local copy of trunk permanently, use the following command:
>>> svn update --set-depth empty documentation
>>> After this command, the documentation directory will be skipped during further updates and switches. (To restore it back, use --set-depth infinity).
>>>
>>> Windows users may use the following batch-script to delete all documentation and *\docs directories at once (just save as deletedocs.bat and run from trunk directory):
>>> @echo DELETING OF documentation...
>>> svn update --set-depth empty documentation
>>> @echo DELETING OF *\docs:
>>> @FOR /f %%d IN ('dir /b /a:d') DO (
>>> @IF EXIST %%d\docs\.svn (
>>> @echo DELETING OF %%d\docs...
>>> svn update --set-depth empty %%d\docs
>>> )
>>> )
>>>
>>>
>>> Best Regards,
>>> Yahor Radtsevich
>>>
>>> _______________________________________________
>>> jbosstools-dev mailing list
>>>
jbosstools-dev@lists.jboss.org
>>>
https://lists.jboss.org/mailman/listinfo/jbosstools-dev
>>
>>
>
>