I'm a beginning developer setting up a project in Xcode 4.3 and I'm wondering under what circumstances I would need to check the "Create local git repository for this project" box.
Thank you!
|
|
|
Git is a version control system. It's useful for a number of reasons:
I can't imagine working on a project without version control, so I'd recommend learning how to use it. |
|||
|
|
|
When you build a project, it's always good to keep a history of what happened in the past. Say you need to check a file revision with 4 months ago. Git is the source control that maintains these revisions. |
|||
|
|
|
It is a version control system, and well, it manages the versioning of your project ( files). It basically helps you to go back or track the changes to your code as you develop. You can freely do changes, knowing that you can easily see what changes you have done or revert back to a previous version etc. Of course version control and Git are not just about that, but that's the basics. There is rarely a case when you should not check that box and create one. Read up more on version control, the need for it and then about Git and you will be set. |
|||
|
|
|||
|
|
|
Since everyone else has described what git is I can give you some more motivation on why to use it:
|
|||
|
|
|
|
|||
|
|