Re: Corrupted Project
Re: Corrupted Project
- Subject: Re: Corrupted Project
- From: Jens Alfke <email@hidden>
- Date: Mon, 11 Jul 2011 12:43:50 -0700
On Jul 11, 2011, at 12:26 PM, Gordon Apple wrote:
> I haven’t used version control mainly because I was under the impression that it was mainly for multi-developer projects. Wrong assumption. I’m now looking into doing just that.
Great! I recommend using a distributed system like Git or Mercurial, because they store the repository right in the project directory and make it ridiculously easy to put any folder under version control. In Mercurial you’d basically do:
cd /path/to/MyProject
hg init
hg addremove
hg commit -m "first commit"
Boom, that’s it, repo created and everything’s snapshotted and backed up. Repeat the last two lines any time you want to make another snapshot.
—Jens _______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden