是否可以将多个外部组合到一个目录中?
e.g:
$ svn propget svn:externals calc
第三方/声音//svn.example.com/companyA/sounds
第三方/声音//svn.example.com/companyB/sounds
答案 0 :(得分:2)
不,那是不可能的。
答案 1 :(得分:1)
没有;第二个语句优先于第一个语句,你只能从companyB获得文件。
答案 2 :(得分:0)
你不需要这样做:
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!"