On Thu, Nov 18, 2010 at 10:02 PM, dhtml <[email protected]> wrote: > Sure, if you know what you're doing. > > Sorry, I know it's annoying but I don't know what the hell I'm doing.
You're a programmer and you don't want to know what you're doing? The world is doomed. > I have now in OS X Terminal, from dir ".ssh": > > .ssh garrett$ git add [email protected]:GarrettS/ape-javascript- > library.git -f > fatal: Not a git repository (or any of the parent directories): .git > > What'd I do wrong? Why are you in the .ssh dir? It's not a git repository, which is what the error said. You typed "git add" instead of "git remote add", so even if it were a git repository, it wouldn't have worked. Maybe what you want is: cd git clone [email protected]:GarrettS/ape-javascript-library Have fun, Avery -- You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/github?hl=en.
