Reputation: 383
I have a java project checked out from one SVN repository where I have read access. To this project I added my own package. I have uploaded the entire project, including my package to my own SVN repository. Is there an easy way to update my sources from the repository where I initially got the project?
Upvotes: 3
Views: 86
Reputation: 29174
This situation is usually handled using Vendor Branches.
EDIT
Also consider using a distributed version control system (Mercurial, Bazaar, Git). I think most of them can also connect to subversion repositories (for Bazaar I'm sure ...) and they are specifically designed for such situations.
Upvotes: 4
Reputation: 13427
I think you're looking for SVN externals: http://svnbook.red-bean.com/en/1.0/ch07s03.html
Upvotes: 3