Update the existing remote:
$ git remote set-url origin git@github.com:ppreyer/first_app.git
You can add the new remote with a different name or update the existing one if you don't need it. To add a new remote do the following:
$ git remote add github git@github.com:ppreyer/first_app.git
I hope this helps you.