vote up 2 vote down star

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...

flag

0% accept rate
2  
A google search for "version control" would give you a lot of information. You should educate yourself on that general topic first, before taking concrete steps. – balpha Jul 9 at 9:04
However, having it here is in stackoverflow means the answer will now be in the first place I would look. No need to downvote. – Xetius Jul 9 at 9:19
While I cannot agree to vote a newbie down for lacking professional knowledge, it should be clear to ask question in a more specific way. – Henrik P. Hessel Jul 9 at 9:21
Newbies don't always know what to ask. Both you and I were newbies once... be kind... hug a newbie – Xetius Jul 9 at 9:23
Xetius, rAyt: I totally agree with you (I didn't downvote). I was just hinting at what to search for, as valiantb seems to be new to the topic and doesn't know the domain specific terminology yet -- which is totally okay. Kinda like Joel's "microfoam" problem from the podcast. I don't see my comment as sounding rude; it definitely wasn't meant to. – balpha Jul 9 at 9:33
show 1 more comment

closed as not a real question by OrbMan, Neil Butterworth, fmsf, Bombe, John Saunders Jul 10 at 16:58

3 Answers

vote up 3 vote down

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.

link|flag
THANKS A LOT FOR THAT... I also wanted to tel that I saw a repository three20 which has a view controller which i'd like to include.... with your reply i'm trying to figure everything out... but can you tell me how to clone a repository and what it means in the first place..... and one more thing brother... you rock... (by your comment to balpha . THANKS DUDE . due to this help of people like you public forums run.. Thank you ......... from the bottom of my heart – valiantb Jul 9 at 19:28
email me chris at xetius dot com – Xetius Jul 9 at 21:35
vote up 1 vote down

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:

mkdir project
cd project
git clone <URL of repository>

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.

link|flag
Doesn't explicitly mention platform, but tagged XCode and iPhone which is most likely to mean OSX – Xetius Jul 9 at 9:21
OK, but I'm neither a Mac nor iPhone user. – pgs Jul 9 at 9:37
I'm an mac osx 10.55 user.... intel based mac – valiantb Jul 9 at 18:31
Thanks a lot for help..... – valiantb Jul 9 at 18:32
+1 for addressing the real question – Greg Hewgill Jul 10 at 11:00
vote up 2 vote down

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.