Ok, I know how to use git for the most part, but I've just recently been playing with some github stuff and noticed the public/private url. May I ask what that is about?

I know may not be advanced enough for super user, but I wasn't sure where else to ask this :) thanks.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Public URLs allow anyone to clone your repo, but they're read-only so you can't push changes back over a public URL. Private URLs are only accessible by collaborators with access to the repo, but they're read/write so you can push changes back into the repo.

link|improve this answer
but public allows them to take and play with it, just without push-back ability? – jphenow Jul 9 '10 at 14:02
@jphenow: correct – msw Jul 9 '10 at 15:10
Perfect! Thank you :) – jphenow Jul 9 '10 at 15:44
feedback

Your Answer

 
or
required, but never shown

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