Well, it seems that it is not possible to combine local changes with external svn, but you can combine all several external elements together and then check your local working changes afterwards.
To return to the svn:externals project, you must explicitly specify the svn:externals directory name in checkin, for example:
svn ci vendor/plugin/<plugin_name>
You can test any number of different plugins together on the same command line with:
svn ci vendor/plugin/<plugin_one> vendor/plugin/<plugin_two> ...
But then your local working copy changes should be done separately. If you do not, you will receive either an unpleasant warning that "Failed to block" your local working copy, and ask: "Are all the goals part of the same working copy?" OR you will get some kind of strange message that
svn: Commit failed (details follow): svn: Illegal repository URL ''
So it seems that you should make changes to the working copy regardless of your svn: externals commit. However - at least it is only, not N (where N is the number of plugins plus a working copy). You can still link the two commits with the same commit message.
Taryn east
source share