What's the benefits of “svn:externals”?

后端 未结 3 823
青春惊慌失措
青春惊慌失措 2021-01-14 11:54

I would not get to know svn:externals if I haven\'t run into the this page. So, I setup my working folder. Then

mkdir lib/vendor
svn add --parents lib/vendo         


        
3条回答
  •  耶瑟儿~
    2021-01-14 12:46

    The svn:externals mechanism is behaving as advertised. The problem is that you are using a public subversion repository (accessed over the internet) inside what I assume is a local repository. As a result, you are seeing a significant discrepancy in the time to update the internal repository vs. the externally referenced one.

    Copying to your repository is certainly a viable solution. How to do this is explicitly documented in the Subversion book.

提交回复
热议问题