On Mon, Feb 20, 2012 at 2:49 PM, Michael Hartmeier <michael.hartme...@1und1.de> wrote: > Hi, > > I have a working copy that only contains svn:externals, no "normal" files or > directories: > > $ svn propget svn:externals . > shop https://svn.schlund.de/shop/trunk > popups https://svn.schlund.de/popups/trunk/ > > How can I add a new external without updating the whole working copy? > > What worked with 1.6: I changed (and committed) the svn:externals to > > shop https://svn.schlund.de/shop/trunk > popups https://svn.schlund.de/popups/trunk/ > tuneup https://svn.schlund.de/tuneup/trunk/ > > and manually checked out the respective directory with > > svn co https://svn.schlund.de/tuneup/trunk/ tuneup > > However, with Subversion 1.7, this directory is shown with status "?": > > $ svn st > X shop > X popups > ? tuneup > > How can I fix the "tuneup" status to make it > > X tuneup > > ??? > > Any help would be apprecheated!
An 'svn update' after changing the externals should do the trick. That should automatically "pull in" the new external. -- Johan