i'm sort of a newbie in application programming... I recently heard of this git repository which gives me quite a significant control for my app which i would like to include... but i've never worked with repositories so i'm unable to figure out how to clone this repository and work it out.... So if someone could give me a walkthrough and tell me about repositories it would be a lot of helpp.... THANKS IN ADVANCE...
|
|
|||||||||||||
|
closed as not a real question by OrbMan, Neil Butterworth, fmsf, Bombe, John Saunders Jul 10 at 16:58 |
|
|
Git is a Software Version Control tool, which will in simplest terms will keep backups of all of your code. It will also keep every version of every file allowing you to revert back to an earlier version if you really mess one copy up. Seeing as you are doing iPhone development I am presuming that you are developing on OSX on a Mac, which already comes with Subversion. This may be easier for you to use. To use Git, you will need to download and install the client software. This comes as a command line tool, which will allow you to add, remove and update files in the repository. Here is a blog post regarding installing Git on OSX. There are a number of methods, but I find the prepackaged binary the simplest. There is a basic getting started tutorial on the Git site. The tutorial is here. One final note. Although using a Software Version Control system is not essential for a single user, it is a very good habit to get into, and can really help. Good luck. Oh, and if you are using it with XCode, then you will want to configure it not to version all of the auto-generated stuff (your build directory etc.) Here is a blog post regarding that. |
||||
|
|
|
First you need to install the git software for your computer. You haven't mentioned if you're using Windows, Linux or Mac OS X; we can't help you much more on that front until you do. Next, you need to clone the repository. Create a directory where you'll be working on that code, and clone the repository. On the Linux command line it looks something like this:
Once that completes you can begin your work. gitready.com has documents and tutorials for git users of all levels, or you can just search google. |
||||||||||
|
|
|
First, if you have not used any version control before, you should read about version control and distributed version control in general. I think the best introduction can be found at BetterExplained: There is also Revision control article at Wikipedia, and "Understanding Version Control" (DRAFT) essay by Eric S. Raymond (which describes among others evolution of version control systems). Then you should read one (or all) of git documentation listed below, at least the introductory section:
Further reading:
There is also The Git Parable blog post by Tom Preston-Werner (one of people behing GitHub, git hosting site), which describes how Git-like system could be built from first principles, simultaneously teaching about why-s of version control, and helping you to understand the concepts that make Git so powerful. |
|||
|
|
