I am new to git and gitub.
I created a new public repository on github for a project following the guideline at
http://help.github.com/create-a-repo/
after some steps I used the following commands:
git add .
git commit -m 'first ever commit'
git push origin master
Now I am able to get a zip file from that repo using the github zip feature and that works fine, I can see all my project files after unzip that zip file.
But now I want to get a clone of that repo. What do I need to do now to get a clone? Do I need to create another branch or fork before I can do clone command on my local pc to get a clone of that repo?
After these 2 answers I am still confused. I do not mean to make a clone of my local project. I mean to make a clone of remote public github repo by any one with Internet connection.