I'm new to SVN and am trying to find a workflow / SVN structure for my team that is as painless as possible.
Currently we have a SVN repo set up for internal use where we store code for development projects. This seems to be working well, but it gets tricky when projects require external libraries to work that are also under version control.
Currently I'm running a bash script to recursively delete .svn files from these external libraries in order to add them to our repo, but I'm sure this isn't the best practice. It would be nice to have the option of updating dependencies (some sort of repo to repo checkout perhaps).
Any suggestions on how I can improve this process?
(BTW.. the SVN client we are using is Versions. We'd like to avoid command-line-based solutions if at all possible.)