Trevor Jordy
Trevor Jordy

Reputation: 658

What is the best way to back up an Xcode project

How is it recommended I back up my Xcode projects? Is there a way to backup the whole thing to the web to be pulled from in case the files are somehow deleted from my computer?

Upvotes: 1

Views: 4564

Answers (1)

user3069232
user3069232

Reputation: 8995

Not sure which is the "best", it must surely depend on your budget, development environment, resources, time, etc etc. Here some ideas, I list them in the order of preference, starting with the FREE.

  1. "Git" in effect creates a backup, even if strictly speaking its version control tool.
  2. You can create and save it on your iCloud Drive, Google Drive, Sky Drive, etc etc, of course you need to manually duplicate it on a regular basis.
  3. You can for sure get commercial tools to do this, do a google/wikipedia search, read some reviews.
  4. "Time machine" perhaps overkill, although maybe you can tweek it to focus on your projects.
  5. "rdist" is UNIX utility that you could setup in a "crontab" to do regular copies of files that changed, although a risky strategy.
  6. Just use Finder to manually duplicate the entire folder, you just need to remember to do it.

Upvotes: 1

Related Questions