Best approaches to versioning Mac "bundle" files - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:22:26Z http://stackoverflow.com/feeds/question/27027 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/27027/best-approaches-to-versioning-mac-bundle-files 3 Best approaches to versioning Mac "bundle" files Mark Harrison 2008-08-25T22:13:58Z 2008-08-28T19:05:18Z <p>So you know a lot of Mac apps use "bundles": It looks like a single file to your application, but it's actually a folder with many files inside.</p> <p>For a version control system to handle this, it needs to:</p> <ul> <li>check out all the files in a directory, so the app can modify them as necessary</li> <li>at checkin, <ul> <li>commit files which have been modified</li> <li>add new files which the application has created</li> <li>mark as deleted files which are no longer there (since the app deleted them)</li> <li>manage this as one atomic change</li> </ul></li> </ul> <p>Any ideas on the best way to handle this with existing version control systems? Are any of the versioning systems more adept in this area? </p> http://stackoverflow.com/questions/27027/best-approaches-to-versioning-mac-bundle-files/27111#27111 2 Answer by Matthew Schinckel for Best approaches to versioning Mac "bundle" files Matthew Schinckel 2008-08-25T23:30:19Z 2008-08-25T23:30:19Z <p>Mercurial in particular versions based on file, not directory structure. Therefore, your working tree, which is a fully-fledged repository, doesn't spit out .svn folders at each level.</p> <p>It also means that a directory that is replaced, like an Application or other Bundle, will still find it's contents with particular file names under revision control. File names are monitored, not inodes or anything fancy like that!</p> <p>Obviously, if a new file is added to the Bundle, you'll need to explicitly add this to your repository. Similarly, removing a file from a Bundle should be done with an 'hg rm'.</p> <p>There aren't any decent Mercurial GUIs for OS X yet, but if all you do is add/commit/merge, it isn't that hard to use a command line.</p> http://stackoverflow.com/questions/27027/best-approaches-to-versioning-mac-bundle-files/32441#32441 1 Answer by Nick Haddad for Best approaches to versioning Mac "bundle" files Nick Haddad 2008-08-28T14:39:37Z 2008-08-28T14:39:37Z <p>For distributed SCM systems like git and mercurial shouldn't be a problem as Matthew mentioned.</p> <p>If you need to use a centralized SCM like Subversion or CVS, then you can zip up (archive) your bundles before checking them into source control. This can be painful and takes an extra step. There is a good blog post about this at Tapestry Central:</p> <p><a href="http://tapestryjava.blogspot.com/2007/09/mac-os-x-bundles-vs-subversion.html" rel="nofollow">Mac OS X bundles vs. Subversion</a></p> <p>This article demonstrates a ruby script that manages the archiving for you.</p>