ratan
ratan

Reputation: 395

how to import project from github to computer

I have a rails + postgresql project hosted on github. I usually work on it from my laptop and push the changes out.

I would like the same project source to come on my desktop as well so I can work on it if I am on my desktop. The project is also deployed to heroku so I'd like to pull the db changes and stuff as well.

I already have github installed on my desktop. what commands/options can I run to get the code over to desktop?

Upvotes: 0

Views: 1965

Answers (1)

Toby Hede
Toby Hede

Reputation: 37133

git clone {remote_path}

Upvotes: 1

Related Questions