Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What order does SVN checkout files?

Tags:

php

svn

I would like to know what order SVN checks out files, specifically on a clean checkout. I'm trying to run a script that depends on the filemtime() of certain files and if I could force some files to checkout on a fresh checkout before other it would make everything a lot easier.

like image 702
StefanHayden Avatar asked Nov 25 '22 17:11

StefanHayden


1 Answers

If it's not specified in the Subversion documentation, I don't think you should depend on any particular order. Even if it behaves in a predictable way now, it might change in the future, as it doesn't seem like something they would need to guarantee. It might also depend on whether the data store is BDB or FSFS.

So if you need to check out files in a specific order, check them out individually in that order.

like image 147
Barmar Avatar answered Dec 15 '22 18:12

Barmar