show/hide this revision's text 3 added 1 characters in body

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.

For a version control system to handle this, it needs to:

  • check out all the files in a directory, so the app can modify them as necessary
  • at checkin,
    • commit files which have been modified
    • add new files which the application has created
    • mark as deleted files which are no longer there (since the app deleted them)
    • manage this as one atomic change

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?

show/hide this revision's text 2 added 171 characters in body

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.

It makes the application nice and speedy (you can update an image in

For a documentversion control system to handle this, and it just copies that image into the folder without having needs torewrite :

  • check out all the document file, etc)files in a directory, but it causes problems for version controlso the app can modify them as necessary
  • at checkin, since most versioning systems know about
    • commit files but not directories.which have been modified
    • add new files which the application has created
    • mark as deleted files which are no longer there (since the app deleted them)
    • manage this as one atomic change

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?

show/hide this revision's text 1

Best approaches to versioning Mac "bundle" files

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.

It makes the application nice and speedy (you can update an image in a document, and it just copies that image into the folder without having to rewrite the document file, etc), but it causes problems for version control, since most versioning systems know about files but not directories.

Any ideas on the best way to handle this? Are any of the versioning systems more adept in this area?