User Jim T - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:05:44Z http://stackoverflow.com/feeds/user/7298 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1877485/how-do-i-reconfigure-visualsvn-server-from-copy-modify-merge-to-lock-modify-unloc/1879311#1879311 2 Answer by Jim T for How do I reconfigure VisualSVN server from Copy-Modify-Merge to Lock-Modify-Unlock? Jim T 2009-12-10T07:53:54Z 2009-12-10T07:53:54Z <p>Subversion does not offer a strong lock-modify-unlock mechanism. But, if you right click on any file in subversion you get the option to lock it. This prevents anyone else from checking in until they have the lock or the lock's been released.</p> <p>You can mark files as needing a lock by setting the svn:needs-lock property, see here:</p> <p><a href="http://svnbook.red-bean.com/en/1.4/svn.advanced.locking.html#svn.advanced.locking.lock-communication" rel="nofollow">http://svnbook.red-bean.com/en/1.4/svn.advanced.locking.html#svn.advanced.locking.lock-communication</a></p> <p>and</p> <p><a href="http://svnbook.red-bean.com/en/1.4/svn.ref.properties.html" rel="nofollow">http://svnbook.red-bean.com/en/1.4/svn.ref.properties.html</a></p> <p>You don't have to set it for every file in the project, you can have it for individual files quite happily.</p> <p>However, the edit-merge-commit operation is the default in every modern source control system for a reason. Even TFS. Again, I recommend <a href="http://www.ericsink.com/scm/source%5Fcontrol.html" rel="nofollow">Eric Sink</a>.</p> http://stackoverflow.com/questions/1865190/svn-noob-quick-summary-of-how-to-use-it/1865656#1865656 0 Answer by Jim T for SVN Noob: quick summary of how to use it? Jim T 2009-12-08T09:00:26Z 2009-12-08T09:00:26Z <p>Far from conscise, but any excuse to post a link to Eric Sink's excellent series:</p> <p><a href="http://www.ericsink.com/scm/source%5Fcontrol.html" rel="nofollow">http://www.ericsink.com/scm/source_control.html</a></p> http://stackoverflow.com/questions/1842553/versioning-sql-server/1846204#1846204 1 Answer by Jim T for Versioning SQL Server? Jim T 2009-12-04T10:49:37Z 2009-12-04T10:49:37Z <p>This might be a useful tool for you: <a href="http://www.liquibase.org/" rel="nofollow">http://www.liquibase.org/</a></p> <p>It's designed so that it's easy to version control in any system, and manages your upgrade scripts in a sane way.</p> http://stackoverflow.com/questions/1840224/merge-sources-from-branch-to-trunk-change-trunk-with-branch/1840654#1840654 0 Answer by Jim T for Merge sources from branch to trunk. Change trunk with branch. Jim T 2009-12-03T15:30:38Z 2009-12-03T15:30:38Z <p>You could rollback all the changes in trunk since the branch was made, then simply re-integrate the branch into trunk in the normal way.</p> <p>This is basically a reverse merge of all the changes on trunk since the branch, and gives you one revision which removes them all. Then the branch changes come in on top of that.</p> http://stackoverflow.com/questions/1836526/proper-svn-use-of-branches-and-trunk/1840438#1840438 0 Answer by Jim T for Proper SVN use of branches and trunk Jim T 2009-12-03T15:04:15Z 2009-12-03T15:04:15Z <p>The way you're working is fine. At the moment, everything goes through trunk, so you've got a single point of reference to know where everything is. The problem with not using a trunk is having solid knowledge of where a bug has gone. With a trunk, the issue is a linear one. Without a trunk, it becomes exponential, as you have to compare every branch against every other branch to see what's in them.</p> <p>Personally I'd rather not see any code originate in the release branches - make fixes in dev branches first, then merge through trunk to the release branch. Sometimes this isn't practical, but the merge history can always be fiddled to make it look like that's what happened. In general, a solid flow of code from dev branches, through trunk and into releases is quite understandable.</p> <p>The reason for this is that you can then assign a trunk revision number to every fix, and trace that revision by simply examining each release's merge history against trunk. You can even tabulate this to see exactly what fixes have been released. (For example, see my answer <a href="http://stackoverflow.com/questions/1082699/svn-track-merges/1082881#1082881">here</a>).</p> <p>If a fix can originate in a release branch, this kind of comparisson becomes much harder. Still possible though I suppose. But if there's no trunk, you have to compare every release against each other and it becomes a much harder proposition.</p> http://stackoverflow.com/questions/1766399/issue-tracking-software-that-support-multiple-repositories/1789804#1789804 0 Answer by Jim T for Issue tracking software that support multiple repositories Jim T 2009-11-24T12:35:07Z 2009-11-24T12:35:07Z <p>I've used and heartily recommend <a href="http://www.redmine.org/" rel="nofollow">redmine</a> in this sort of situation. Seamless integration with svn and other source control systems. Multi-project, multi-user, loads of plugs, very flexible ... and I think it looks pretty good too.</p> <p>I don't use it at the moment and do miss it.</p> <p><a href="http://www.redmine.org/" rel="nofollow">http://www.redmine.org/</a></p> http://stackoverflow.com/questions/1787501/subversion-branch-from-revision-with-mergeinfo/1789414#1789414 1 Answer by Jim T for Subversion branch from revision with mergeinfo Jim T 2009-11-24T11:17:05Z 2009-11-24T11:17:05Z <p>From the question, I'm not entire sure exactly which diffs you're trying to generate. However, you can always get the revision that a branch came from by using:</p> <pre><code>svn log -v --stop-on-copy -r 1:HEAD -l 1 svn+ssh://{url}/branch </code></pre> <p>This orders the revisions oldest first, doesn't go back beyond the copy operation for that branch, and limits it to the 1 revision (the copy operation itself).</p> <p>However, svn mergeinfo takes account of branch operations and considers them already merged (I think there was a time when it didn't do this, which was annoying, but it's been fixed a while), so using mergeinfo to see what nees to be merged in either direction will show you something sensible.</p> http://stackoverflow.com/questions/1763160/modify-files-under-svn-in-hook-script/1765395#1765395 1 Answer by Jim T for Modify files under svn in hook script Jim T 2009-11-19T18:14:19Z 2009-11-19T18:14:19Z <p>There's no problem with doing what you suggest in a post commit hook, but do be aware that it will add a new revision to the repository and that the original committer will need to do an update before they can see the changes the script made. It will also slow down the commit as the post commit runs before returning from the commit operation.</p> http://stackoverflow.com/questions/1673243/how-to-handle-unmergeable-files-in-a-version-control-system/1680560#1680560 1 Answer by Jim T for How to handle unmergeable files in a version control system? Jim T 2009-11-05T13:23:49Z 2009-11-05T13:23:49Z <p>Some formats cannot be automatically merged using standard source control tools. Normal tools rely on the assumption that a line can be inserted, changed or removed without affecting every other line in the file. Some formats don't follow that assumption.</p> <p>Sometimes these irritating formats have their own merge tools, which can be used after the source control tool has failed. I can't find a way to prevent subversion from attempting an auto-merge of a file (feature request?), but if subversion fails, it will dump 2 files in the working copy representing the 2 versions.</p> <p>At that point, you can try here: <a href="http://www.magicdraw.com/main.php?ts=navig&amp;cmd%5Fshow=1&amp;menu=merge" rel="nofollow">http://www.magicdraw.com/main.php?ts=navig&amp;cmd_show=1&amp;menu=merge</a></p> http://stackoverflow.com/questions/1678323/how-to-prevent-a-file-from-being-commited-revised-in-subversion/1678959#1678959 0 Answer by Jim T for How to prevent a file from being commited/revised in subversion? Jim T 2009-11-05T07:42:45Z 2009-11-05T07:42:45Z <p>There's always pre-commit hooks. Use svnlook on the transaction to see what files it modifies, if it includes your special file, return a failure and an error message. <a href="http://subversion.tigris.org/tools%5Fcontrib.html#commit%5Faccess%5Fcontrol%5Fpl" rel="nofollow">http://subversion.tigris.org/tools_contrib.html#commit_access_control_pl</a></p> http://stackoverflow.com/questions/1590809/how-can-i-provide-a-more-robust-link-between-svn-commits-and-tickets/1645325#1645325 1 Answer by Jim T for How can I provide a more robust link between SVN commits and tickets Jim T 2009-10-29T17:28:12Z 2009-10-29T17:44:05Z <p>I'm a bit late to this party, but is a very useful page that details exactly what you're talking about. </p> <p>It allows you to set a property that highlights the bug number and turns it into a hyperlink to the bugtracking page when viewed in tortoisesvn (using regular expressions and svn properties). Also say you can get/develop plugins for tortoisesvn which allow you to pick a bug from a list. There's probably one for trac, but I don't know where it is or how good it is.</p> <p>Combine either of these with the server side hook to disallow committing without the bug number, and you've got a pretty good system.</p> <p><a href="http://tortoisesvn.net/docs/release/TortoiseSVN%5Fen/tsvn-dug-bugtracker.html" rel="nofollow">http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-bugtracker.html</a></p> <p>Update: A quick google reveals that <a href="http://tracexplorer.devjavu.com/" rel="nofollow">TracExplorer</a> may be your best bet for this.</p> http://stackoverflow.com/questions/1640032/subversion-how-to-append-text-to-every-committed-file/1643264#1643264 0 Answer by Jim T for Subversion: How to append text to every committed file? Jim T 2009-10-29T12:08:14Z 2009-10-29T12:08:14Z <p>How about working on this another way - use a robot. It's a bit more work, but basically: accept the commit into the repository without the required legal section and trigger the robot to have a look (or have the robot look periodically).</p> <p>The robot then does a checkout/update of the files it looks after, checks their policy and legal notices, automatically adds anything it needs and then checks the changes back in. This way, subversion's caches are happy and the legal notices are on all files. Developerse will pull the changes down on the next update/commit cycle just as they would any other change. You can even have the robot automatically keep the legal section up to date with the latest definition, depending how complex you want it to be.</p> <p>Might even be able to make use of something like Hudson to host this in a useable framework.</p> http://stackoverflow.com/questions/1638299/svn-and-code-shared-between-several-projects/1642151#1642151 0 Answer by Jim T for SVN and code shared between several projects Jim T 2009-10-29T07:44:31Z 2009-10-29T07:44:31Z <p>The answer that's missing from your list is:</p> <p>c) Always point externals to a specific version of the shared code.</p> <p>This works remarkably well:</p> <ol> <li>You can always pull down a specific version of your project and guarantee the build.</li> <li>Branching and tagging is an operation on the project path alone. </li> <li>Updates to the shared code can be made for 1 project, but the second project won't pick them up until it's ready to. </li> <li>When the second project does pick up the changes, you get an event recorded in your trunk saying that it was picked up and why. </li> <li>You get the opportunity for releasing a specific version of the library with specific features for a project. This can get you out of holes if a project isn't ready for an API change but needs certain bug-fixes, etc.</li> </ol> <p>If required, libraries can be checked out in a separate working copy and modified alongside your main project. If the project is temporarily changed to pick up code from the working copy on disk, you can then still work on libraries and projects in parallel, if needed.</p> http://stackoverflow.com/questions/1636316/does-svnadmin-pack-work-on-non-upgraded-1-6-repos/1637138#1637138 0 Answer by Jim T for Does svnadmin pack work on non-upgraded 1.6 repos? Jim T 2009-10-28T13:07:09Z 2009-10-28T13:35:02Z <p>Packing only works on groups of 1000 revisions (or whatever your shard size is). If you've only got 16 revisions, the shard is still active and can't be packed.</p> <p>Once you've got >1000 revisions, you can pack up the first shard.</p> <p>After 2000 revisions, you can pack up the next shard, and so on.</p> <p>A more complete description is available in this part of the <a href="http://subversion.tigris.org/svn%5F1.6%5Freleasenotes.html#fsfs-packing" rel="nofollow">release notes</a>.</p> <p>Oh, and to actually answer your question, it's not automatic, you'll need to run "svnadmin pack" manually each time you want to pack the old, full shards that haven't been packed yet.</p> http://stackoverflow.com/questions/1498197/security-on-subversion/1499114#1499114 2 Answer by Jim T for Security on Subversion Jim T 2009-09-30T16:03:49Z 2009-09-30T16:03:49Z <p>If you're using Active Directory authentication - I should hope that a brute force attack would be thwarted by the normal windows' system of locking out accounts that have had too many password failures on them.</p> <p>What kind of access are you granting over the firewall? If it's developer access (work from home stuff), you might consider using a VPN. If it's readonly stuff, you might consider exposing a <a href="http://wordaligned.org/articles/how-to-mirror-a-subversion-repository" rel="nofollow">mirror</a> instead of the main server.</p> http://stackoverflow.com/questions/1497072/tortoise-svn-version-for-server-version-1-5-5/1497310#1497310 3 Answer by Jim T for Tortoise svn version for server version 1.5.5 Jim T 2009-09-30T10:38:27Z 2009-09-30T10:38:27Z <p>Tortoisesvn has its own internal svn libraries and does not rely on the commandline client on the machine.</p> <p>If you're going to be working on the same <strong>working copy</strong> with both svn commandline client and tortoisesvn, they need to be at the same point version, either both 1.5 or both 1.6, etc.</p> <p>If you use tortoisesvn 1.6 to look at a working copy, it will immediately and silently upgrade it to the 1.6 layout. The 1.5 commandline client will then no-longer be able to do any operations on that working copy.</p> <p>The same is true if you're using 1.6 commandline and 1.5 tortoisesvn.</p> <p>In terms of communicating with the server, however, there is no problem having 1.6 clients talk to a 1.5 server, or vice versa. 1.6 servers will provide all the features that the 1.5 client expects. 1.6 clients will know that a 1.5 server won't provide the new features and will account for that.</p> <p>So, you can upgrade your server separate to your clients. Everyone can upgrade their clients at their own pace. But everyone should upgrade all the clients on their machine at the same time to avoid tools being locked out of working copies.</p> http://stackoverflow.com/questions/1493129/how-do-i-manage-source-code-using-svn-branching-merging/1493563#1493563 1 Answer by Jim T for how do I manage source code using SVN? branching, merging. Jim T 2009-09-29T16:14:47Z 2009-09-29T16:14:47Z <p>And another excuse to post a link to Eric Sink's <a href="http://www.ericsink.com/scm/source%5Fcontrol.html" rel="nofollow">source control howto</a>.</p> <p>This is far and away the best introduction to source control I've found and is relevant regardless of the tools you use. </p> http://stackoverflow.com/questions/1446722/storing-svn-repositories-folder-on-a-network-drive/1454133#1454133 0 Answer by Jim T for Storing Svn Repositories folder on a Network drive Jim T 2009-09-21T11:47:25Z 2009-09-21T11:47:25Z <p>Be careful, a simple naive copy of the repository is not guaranteed to give you a valid backup unless the svnserver has been stopped. It may be annoying to stop your server every 5 minutes for a backup.</p> <p>Make sure you're using "<a href="http://svnbook.red-bean.com/en/1.5/svn.reposadmin.maint.html#svn.reposadmin.maint.backup" rel="nofollow">svnadmin hotcopy</a>", not just a san snapshot or copy command.</p> <p>Also, you can run scripts in the "post commit" hook to do backups when something's actually changed.</p> http://stackoverflow.com/questions/1400199/repository-layout-or-hook-for-branching-shared-libraries-and-keeping-your-sani/1447082#1447082 0 Answer by Jim T for Repository layout (or hook) for branching shared libraries (and keeping your sanity) Jim T 2009-09-18T22:25:04Z 2009-09-18T22:25:04Z <p>I'd suggest that it's your approach to these libraries which is causing your problems. You can change this if you start to think about libraries as separate projects in their own right. Think of them as having their own reasons for being, their own design and their own release cycles, just like the 3rd party libraries you may use for unit testing, xml readers, db access, etc.</p> <p>Of course you will regularly have times where a feature in a project requires a new feature in a library. Implementing the library feature and making use of the library function are two independent tasks - they may be one business task but they're two development tasks. There's no need to tightly link the two activities together just because that's how the job came in. Checkout the library, change it, release it, then checkout your project and use the new release of the library in your project.</p> <p>I feel strongly that having libraries separated out into their own trunks is a good thing - I can't stand it when I see multiple independently releasable projects under a single trunk. It smacks of poor design and having been backed into a corner by development cruft. But to separate them out you have to be able to release each project independently - to me, that's what having multiple projects <em>means</em>. But it's not a hard thing to do:</p> <p>First a project uses externals to reference a specific released version of a library. That's the only way a project references a library. Doing this means that developers can make a new version of the library without breaking any of the projects using it, because all projects will be referencing the previous version. Projects get to control when they want to bring in new versions of libraries - the developers get to choose when they want to put in the effort of testing their code with the new version and when to take the pain of fixing any build issues the new library introduces.</p> <p>When you explicitly change versions of a library like this, you also get an entry in your project that says "I'm now using <em>this</em> version of library X", which gives you a good sense of history in your project as to when things were working and exactly when things changed.</p> <p>Now of course, this is all nice in theory, but in practice developers will sometimes have to reference unstable and unfinished versions of a library. That's fine - a developer can always switch their working copy to point to library trunk instead of a tag, or some development branch, and use the code from there (even work on it through there if they must, brrr). A switch is just a local edit, so will have no effect on the committed code. If the project development is on an unstable branch, then you can decide to make the switch more permanent by changing the externals reference until the branch is ready to be reintegrated, but this isn't something that would normally be done without an explicit reason.</p> <p>And, finally, branching and tagging your project becomes a simple case of making a branch or tag of your main project - that's all. There's no need to worry about branching libraries - they take care of themselves. The process of making a change to a library doesn't change whether the project is in trunk, a development branch, or a maintenance release. And your libraries can themselves have development branches entirely independent of the main projects, as well as multiple supported versions, etc, down to whatever level of complexity you need and can support.</p> <p>By using externals on your trunk or development branch, you can have a single checkout that builds your workspace in whatever structure you need. Because all libraries are under the main root, you can have multiple checkouts of multiple versions without getting clashes in the build. </p> <p>I've found this system works pretty well, and after moving jobs to a place that doesn't work this way, I find myself pining for the previous way of working. There are issues, mainly to do with libraries depending on libraries and whether to have recursive externals or not. My take on that is to go recursive unless it causes a problem (or excessive pain), then move to a 'degenerate' model where the project has to know about certain 'deep' dependencies even if it doesn't use them directly. Also, decide where you're going to put your externals definitions and stick to it, nothing's more annoying than hunting for those svn:externals properties on random folders in different projects. Putting them on the root of trunk is fine.</p> http://stackoverflow.com/questions/1445156/how-often-do-you-back-up-your-subversion-repository/1445478#1445478 2 Answer by Jim T for How Often Do you Back Up your Subversion Repository? Jim T 2009-09-18T16:01:57Z 2009-09-18T16:01:57Z <p>When I managed the svnserver for a team of 15 or so developers:</p> <ol> <li>Sync to mirror server on each commit</li> <li>Mirror server dumps each revision on commit</li> <li>Nightly incremental backups on main server</li> <li>Weekly bulk backups on main server, keeping 2 weeks history</li> </ol> http://stackoverflow.com/questions/1431936/is-it-possible-to-run-pydev-connected-to-a-virtualbox-instance/1432475#1432475 1 Answer by Jim T for Is it possible to run pydev connected to a virtualbox instance? Jim T 2009-09-16T11:45:59Z 2009-09-16T11:45:59Z <p>I assume your host box is windows.</p> <p>I also assume that pydev will run under linux (since it's eclipse based). Are you ok installing the dev environment on your linux server?</p> <p>In which case:</p> <ol> <li>install and run <a href="http://sourceforge.net/projects/xming/" rel="nofollow">xming</a> on your windows box</li> <li>Install eclipse &amp; pydev on your linux box</li> <li>Configure <a href="http://www.math.umn.edu/systems%5Fguide/putty%5Fxwin32.html" rel="nofollow">x forwarding in putty</a></li> <li>Run pydev through putty and you'll have the UI appear on your windows machine like normal</li> </ol> <p>Then pydev will be running on the linux box quite happily, and so using the python environment on there.</p> <p>Downsides: you will need to install the X libraries &amp; java on your server (installing eclipse using your normal package manager should be enough), although you won't need to run X itself, since that's what Xming is for.</p> http://stackoverflow.com/questions/1414745/why-is-it-considered-a-good-practice-to-store-radically-different-data-types-in-s/1426388#1426388 0 Answer by Jim T for Why is it considered a good practice to store radically different data types in separate repositories while using SVN? Jim T 2009-09-15T10:42:42Z 2009-09-15T10:42:42Z <p>It's more to do with policy than the data type itself.</p> <p>The normal trunk tags * branches layout is really designed for code. It probably isn't the best way to organize your company documents, for example.</p> <p>For a lot of data, you can truncate svn history to save space, but for code you probably really don't want to do that very often.</p> <p>Once data's in a repository, it's blessed hard to get it out. If you've got to perform surgery to remove someone's address from a word document, you can avoid importing all the code revisions as well.</p> <p>etc, etc.</p> http://stackoverflow.com/questions/1425533/svn-and-branch-for-3rd-party/1426325#1426325 1 Answer by Jim T for svn and branch for 3rd party Jim T 2009-09-15T10:28:35Z 2009-09-15T10:28:35Z <p>Using a 'current' directory and svn_load_dirs is designed so that you can keep your local changes just as you say. It keeps a continuous history for the files from one version to the next. This allows the merge process to detect what's changed in the base and allow you to keep your changes, just like rebasing a branch from trunk. Otherwise the file is considered new each time and this 'rebasing' tries to replace the file completely rather than merge the new bits in.</p> <p>Since you're dealing with binaries and not patching them at all, you're safe to ignore it.</p> http://stackoverflow.com/questions/1425819/lighthttpd-best-way-to-update-system-network-config-file-from-web-application/1426248#1426248 0 Answer by Jim T for Lighthttpd - best way to update system network config file from web application Jim T 2009-09-15T09:59:23Z 2009-09-15T09:59:23Z <p>If you want to do the heavy lifting yourself, you're on the right path. For a targetted, simple interface it might be the way to go. You can use .htaccess to require a username and password to keep it reasonably secure. Also don't forget to restart whatever services are configured so that they pick up the new config.</p> <p>Or for a prebuilt solution, there's a number of options out there, you might be able to tune <a href="http://www.webmin.com/" rel="nofollow">webmin</a> down to something reasonable.</p> http://stackoverflow.com/questions/1411681/source-control-products-that-support-linked-shared-files/1411995#1411995 1 Answer by Jim T for Source control products that support linked/shared files? Jim T 2009-09-11T16:31:43Z 2009-09-11T16:31:43Z <p>Well sourcesafe is the obvious one that supports this (it's horribly broken in every way, but does support this). I wonder if sourcegear's vault will support this as well, since it's supposed to be a fixed version of sourcesafe.</p> http://stackoverflow.com/questions/1404783/defining-boundaries-in-terms-of-repositories/1406110#1406110 1 Answer by Jim T for Defining boundaries in terms of repositories Jim T 2009-09-10T15:50:00Z 2009-09-10T15:50:00Z <p>In terms of tools, if you build using <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a>, it keeps track of the set of repositories and revision numbers used in each build for you. You can tag from this if necessary.</p> <p>If you've got a tool that works this way then it's not so important to limit the number of revision numbers you're tracking. I split it like this - 1 number can be tracked manually, >1 needs tool support. But they don't need to be complex tools.</p> <p>I prefer a single repository, but that's just a personal preference. It's based on a revision number being unambiguous, with multiple repos you need the repo and the number. Repo boundaries are then on policy changes (eg, this one is used for code, this one for company docs, this one for deployment, etc).</p> <p>Git just doesn't work that way, so you don't have the option of using a single repo. That's not a bad thing, and most systems (like Hudson, Redmine) will happily support this.</p> http://stackoverflow.com/questions/1405091/handling-relations-between-multiple-subversion-projects/1405616#1405616 2 Answer by Jim T for Handling relations between multiple subversion projects Jim T 2009-09-10T14:29:15Z 2009-09-10T14:29:15Z <p>First, I don't agree that externals are evil. Although they aren't perfect.</p> <p>At the moment you're doing multiple checkouts to build up a working copy. If you used externals it would do exactly this, but automatically and consistently each time.</p> <p>If you point your externals to tags (and or specific revisions) within the target projects, you only need to tag the current project per release (as that tag would indicate exactly what external you were pointing to). You'd also have a record within your project of exactly when you changed your externals references to use a new version of a particular library.</p> <p>Externals aren't a panacea - and as the post shows there can be problems. I'm sure there's something better than externals, but I haven't found it yet (even conceptually). Certainly, the structure you're using can yield a great deal of information and control in your development process, using externals can add to that. However, the problems he had weren't fundamental corruption issues - a clean get would resolve everything, and are pretty rare (are you really unable to create a new branch of a library in your repo?).</p> <p>Points to consider - using recursive externals. I'm not sold on either the yes or no of this and tend to go with a pragmatic approach.</p> <p>Consider using piston as the article suggests, I've not seen it in action so can't really comment, it may do the same job as externals in a better way.</p> http://stackoverflow.com/questions/1396737/can-i-use-subversion-for-a-multi-gigabyte-data-set/1399598#1399598 3 Answer by Jim T for Can I use Subversion for a multi gigabyte data set? Jim T 2009-09-09T13:09:26Z 2009-09-09T13:09:26Z <p>I've just done a benchmark on my machine to see what this is like:</p> <pre><code>Data size - 2.3Gb (84000 files in 6000 directories, random textual data) Checkout time 14m Changed 500 files (14M of data changes) Commit time 50seconds </code></pre> <p>To get an idea of how long it would take to manually compare all those files, I also ran a diff against 2 exports of that data (version1 against version2).</p> <pre><code>Diff time: 55m </code></pre> <p>I'm not sure if an ssd would get that commit time down as much as you hope, but I was using a normal single sata disk to get both the 50 seconds and 55minutes comparisons.</p> <p>To me, these times strongly suggest that the contents of the files are <em>not</em> being checked by svn by default.</p> <p>This was with svn 1.6.</p> http://stackoverflow.com/questions/1371774/what-should-be-committed-to-a-repo/1372733#1372733 1 Answer by Jim T for What should be committed to a repo? Jim T 2009-09-03T10:55:10Z 2009-09-03T10:55:10Z <p>It all depends on how you want to work, but here's some food for thought:</p> <p>A way of working I favour is to have a trunk and a release branch. Changes are made to trunk and merged into the release branch as and when it's appropriate.</p> <p>If you commit logical units of work to trunk, you've got a good basis to cherry pick specific revisions (and therefore features) into a release branch, and you've also got a good story of your project's development in your trunk's history. If you commit everything because it's friday afternoon - it might be hard to pick out a coherent set of features to your release branch (if you have one), and very hard to write good commit comments.</p> <p>But you need to balance that with committing often to secure your work and take the value out of your working copy. Unstable development branches are ideal for this. The branches can be short lived and merged into trunk at logical/functional points. These would have no penalty if you commit simply because it's 20mins since you last committed, and the story of the branch would likely be sufficiently simple that you don't care too much about individual details.</p> <p>However, this is only relevant if you have a sufficiently complex development environment - if you're not likely to be holding specific changes back from release or managing multiple versions of a project at the same time, it may not be worth it.</p> http://stackoverflow.com/questions/1348952/what-version-control-system-is-best-designed-to-prevent-concurrent-editing/1361288#1361288 0 Answer by Jim T for What version control system is best designed to *prevent* concurrent editing? Jim T 2009-09-01T08:44:22Z 2009-09-01T08:44:22Z <p>I don't think any distributed version control, like mercury or git, is going to work for you here. SVN has only the most basic features for locking - and the file is set readonly, which in the likes of some office tools, means you can edit it, then find you can't save it until you check it out, then you check it out only to find that the server version was different, and you either loose the server version or your local version.</p> <p>I can't believe I'm saying it, but if you want to work that way, then visual source safe is the only system I know of designed like that. If you want a more modern/reliable version, look at sourcegear's Vault - although they went to great efforts to make something that looked like vss but worked well in an svn like environment.</p> <p>But perhaps a dedicated document management solution would be better - or perhaps even something like portal server.</p> http://stackoverflow.com/questions/1873355/subversion-merge-local-changes-trunk-to-branch/1873413#1873413 Comment by Jim T on Subversion merge local changes trunk to branch Jim T 2009-12-09T13:28:09Z 2009-12-09T13:28:09Z But DO take a quick backup copy of what on your disk first. SVN switch tries its best, but there's no guarantees. http://stackoverflow.com/questions/1871726/time-machine-vs-subversion/1871840#1871840 Comment by Jim T on Time Machine vs Subversion Jim T 2009-12-09T09:34:52Z 2009-12-09T09:34:52Z I think that comment belies a whole story. Can you explain what you're trying to do when you delete the contents of one branch and copy trunk over? I think this kind of thing is more likely the thing causing you problems that svn itself. Although it's always possible you're playing in a manner that upsets svn in a particular way. http://stackoverflow.com/questions/1836506/are-nested-trunk-branches-tags-acceptable/1836570#1836570 Comment by Jim T on Are nested trunk/branches/tags acceptable? Jim T 2009-12-03T15:11:33Z 2009-12-03T15:11:33Z I'd hope to point the external to a tag or specific revision of trunk, but apart from that, fine. http://stackoverflow.com/questions/1753808/should-commit-messages-be-written-in-present-or-past-tense Comment by Jim T on Should commit messages be written in present or past tense? Jim T 2009-11-26T13:24:57Z 2009-11-26T13:24:57Z If this is the biggest problem you have in your development environment, you're doing pretty well. http://stackoverflow.com/questions/1763160/modify-files-under-svn-in-hook-script/1763257#1763257 Comment by Jim T on Modify files under svn in hook script Jim T 2009-11-19T18:09:40Z 2009-11-19T18:09:40Z You can do what you say in a post commit hook, just be aware that it would be adding an addition revision to the repository, and the original committer would also need to do an update to get the changes. http://stackoverflow.com/questions/1640032/subversion-how-to-append-text-to-every-committed-file/1643264#1643264 Comment by Jim T on Subversion: How to append text to every committed file? Jim T 2009-10-29T15:07:31Z 2009-10-29T15:07:31Z No examples, I've not had to do anything like this before, but it wouldn't be any different to set up than a CI build, just with a script that walks over the files instead of builds them. Yes, conflicts would have to be resolved, but it would be no different or any more difficult than if you had gone through and added the legal notices yourself. SVN should be able to merge most of these changes automatically. http://stackoverflow.com/questions/1642124/svn-using-two-subversion-clients Comment by Jim T on [SVN]: Using two Subversion clients. Jim T 2009-10-29T08:59:47Z 2009-10-29T08:59:47Z If you're having trouble, I can really recommend these two places: <a href="http://svnbook.red-bean.com/" rel="nofollow">svnbook.red-bean.com</a>, <a href="http://www.ericsink.com/scm/source_control.html" rel="nofollow">ericsink.com/scm/source_control.html</a> http://stackoverflow.com/questions/1642124/svn-using-two-subversion-clients Comment by Jim T on [SVN]: Using two Subversion clients. Jim T 2009-10-29T08:39:42Z 2009-10-29T08:39:42Z Ok, I'm a little lost with this question. In subversion, everyone works on the same repository, there should be no need to create a new one, is that really what you meant? Also, you wouldn't need to re-import a working copy - you should just be able to open the existing one, or at worst, do a new checkout. These terms have specific meaning in svn, so I'm wondering if you mean something else. http://stackoverflow.com/questions/1638299/svn-and-code-shared-between-several-projects/1639298#1639298 Comment by Jim T on SVN and code shared between several projects Jim T 2009-10-29T07:46:56Z 2009-10-29T07:46:56Z I really dislike this structure. Everything's mashed together and it gets too complicated. Changes to the classlibrary are immediately picked up by both projects, meaning that it becomes fragile and untouchable at scale. You don't get the opportunity to manage your library as it's own entity. Basically, if you're releasing project1 and project2 as separate products, then this layout causes a lot of trouble. http://stackoverflow.com/questions/1638299/svn-and-code-shared-between-several-projects/1639434#1639434 Comment by Jim T on SVN and code shared between several projects Jim T 2009-10-29T07:32:47Z 2009-10-29T07:32:47Z This is exactly what we're planning right now, with the same justifications. http://stackoverflow.com/questions/1636316/does-svnadmin-pack-work-on-non-upgraded-1-6-repos/1637442#1637442 Comment by Jim T on Does svnadmin pack work on non-upgraded 1.6 repos? Jim T 2009-10-28T14:42:27Z 2009-10-28T14:42:27Z The short answer is no. I've just checked this by creating a new repository and adding 1400 revisions to it (randomly generated and committed with svn ci). Listing the db/revs/0 directory reveals all the files in all their glory. After packing, we get a 0.pack file instead. http://stackoverflow.com/questions/1621167/how-do-i-know-if-a-branch-has-already-been-merged-in-svn-mercurial-git/1621236#1621236 Comment by Jim T on How do I know if a branch has already been merged in SVN/Mercurial/Git? Jim T 2009-10-27T15:13:23Z 2009-10-27T15:13:23Z Tortoise lets you choose the source to merge from &amp; destination to merge to. It then gives a list of all the revisions in the source that can be merged. It greys out revisions that have already been merged. http://stackoverflow.com/questions/910465/avoiding-sql-injection-without-parameters/911160#911160 Comment by Jim T on Avoiding SQL injection without parameters Jim T 2009-10-26T07:28:00Z 2009-10-26T07:28:00Z I'm not sure what you mean by &quot;invalid&quot;. This is creating a string for a log file, stdout, exceptions, etc, not creating a string to be run anywhere. It's only job is to let us see which sp was run, and which parameters were passed, not reverse that nice safe sqlcommand into raw sql. http://stackoverflow.com/questions/1522263/can-subversion-be-configured-for-windows-authentication-without-apache/1522333#1522333 Comment by Jim T on Can Subversion be configured for Windows Authentication without Apache Jim T 2009-10-06T06:23:46Z 2009-10-06T06:23:46Z Thing is, visualSVN server uses Apache. This is fine if you don't mind changing the server tech, and using the http protocol. But, the real question, is there a way of doing this <i>without</i> using apache? http://stackoverflow.com/questions/1513101/how-subversion-merges/1513180#1513180 Comment by Jim T on how subversion merges Jim T 2009-10-05T14:46:27Z 2009-10-05T14:46:27Z +1 for interesting link. Not sure how relevant it is to the question, however :)