Subversion Externals: possible to combine several externals into one directory?
Is it possible to combine several externals into 开发者_C百科one directory?
e.g.:
$ svn propget svn:externals calc
third-party/sounds //svn.example.com/companyA/sounds
third-party/sounds //svn.example.com/companyB/sounds
No, that's not possible.
No; the second statement will take precedence over the first and you'll only get the files from companyB.
No youd need to do:
svn mkdir third-party third-party/sounds
svn propedit svn:externals third-party/sounds
-- propeditor --
companyA prot://url/to/companyA/sounds/
companyB prot://url/to/companyB/sounds/
-- write-close --
svn commit third-party -m "Yay Externals!"
精彩评论