开发者

Subversion Externals: possible to combine several externals into one directory?

开发者 https://www.devze.com 2022-12-17 19:09 出处:网络
Is it possible to combine several externals into 开发者_C百科one directory? e.g.: $ svn propget svn:externals calc

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!"
0

精彩评论

暂无评论...
验证码 换一张
取 消