SVN externals sub folder changes not showing in view log (tortoise svn) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:22:38Z http://stackoverflow.com/feeds/question/62716 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/62716/svn-externals-sub-folder-changes-not-showing-in-view-log-tortoise-svn 2 SVN externals sub folder changes not showing in view log (tortoise svn) Brian R. Bondy 2008-09-15T13:12:39Z 2008-09-15T13:58:09Z <p>SVN externals allow you to make an SVN folder appear as if it's at another location. A good use for this is having a common folder shared across all of your projects in SVN.</p> <p>I have a /trunk/common folder in SVN that I share via several different project.</p> <p>Example:</p> <ul> <li>Project1 : /trunk/project1/depends</li> <li>Project2 : /trunk/project2/depends</li> <li>Project3 : /trunk/project3/depends</li> <li>Project4 : /trunk/project4/depends</li> </ul> <p>Each of these depends folders are empty, but have an svn:external defined to point to my /trunk/common folder. </p> <p>The problem is when I view log within any of the projects: /trunk/projectX/ it does not show changes from the svn:externals. I am using tortoise SVN as my SVN client. </p> <p>Does anyone know how to change this behavior? I would like for the show log of /trunk/projectX to include any changes to any defined svn:externals as well.</p> http://stackoverflow.com/questions/62716/svn-externals-sub-folder-changes-not-showing-in-view-log-tortoise-svn/62844#62844 1 Answer by Sander Rijken for SVN externals sub folder changes not showing in view log (tortoise svn) Sander Rijken 2008-09-15T13:25:55Z 2008-09-15T13:25:55Z <p>This is not possible with the current release of Subversion, other than explicitly calling svn log on the target of the externals directory</p> <p>You can try issueing a feature request at <a href="http://subversion.tigris.org" rel="nofollow">their website</a></p> http://stackoverflow.com/questions/62716/svn-externals-sub-folder-changes-not-showing-in-view-log-tortoise-svn/63106#63106 1 Answer by Romain Verdier for SVN externals sub folder changes not showing in view log (tortoise svn) Romain Verdier 2008-09-15T13:58:09Z 2008-09-15T13:58:09Z <p>When you display the log for a local versioned folder, it will show the changes that are relative to this particular folder. Externals are only <strong>a link</strong> to a different folder on the repository. The only thing you can track about external references, from a folder which depends on this external project, is the <strong>reference definition itself</strong>. That is because the reference is a subversion property of the dependent folder.</p> <p>Imagine you have the following repo hierarchy :</p> <pre><code>repo myfirstproject trunk mysecondproject trunk mycommonlib trunk </code></pre> <p>and that <code>mysecondproject\trunk</code> folder has the following <em>svn:external</em> property :</p> <pre><code>svn://mysrv/repo/mysharedlib@2451 sharedlib </code></pre> <p>A checkout of <em>mysecondproject\trunk</em> inside a new folder <em>secondproject</em> will create something like this on your file system :</p> <pre><code>secondproject Folder (refers mysecondproject/trunk) sharedlib Folder (refers mycommonlib/trunk @ revision #2451) </code></pre> <p>Calling "Show log" command of Tortoise from <em>secondproject</em> folder will only show <em>secondproject</em> files changes, and eventually changes that occurred on the <em>svn:external</em> property of the folder.</p> <p>To get change log of the external project, you need to call "Show log" from the inner folder <em>sharedlib</em>, which makes sense.</p>