Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I clone a github project to run locally?

Tags:

git

github

I am trying to follow this railscast tutorial for authlogic - and it points to the source here -

I have git installed - how do I replicate the source onto my localhost so that I can follow the tutorial like in the screencast?

like image 995
RedNax Avatar asked Dec 09 '09 07:12

RedNax


People also ask

How do I copy a project from GitHub?

On the top-right side of the project board, click Menu. Click , then click Copy. Under "Owner", use the drop-down menu and click the repository or organization where you want to copy the project board. Optionally, under "Project board name", type the name of the copied project board.

Does git clone create a local repository?

Git clone is used to copy an existing Git repository into a new local directory. The Git clone command will create a new local directory for the repository, copy all the contents of the specified repository, create the remote tracked branches, and checkout an initial branch locally.


1 Answers

git clone git://github.com/ryanb/railscasts-episodes.git 
like image 193
Thilo Avatar answered Sep 30 '22 15:09

Thilo