Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I run "git remote -v" from Terminal I get the following:

heroku  git@heroku.com:obscure-taiga-9581.git (fetch)
heroku  git@heroku.com:obscure-taiga-9581.git (push)
origin  http://coastguard-quiz.herokuapp.com/ (fetch)
origin  http://coastguard-quiz.herokuapp.com/ (push)

I want to replace the "git@heroku.com:obscure-taiga-9581.git" part. How do I do that?

share|improve this question

3 Answers

up vote 4 down vote accepted

I assume what you want to do is push to coastguard-quiz repo which is on heroku, so that when you git push heroku it updates the caostguard-quiz.herokuapp.com.

git remote rm heroku
git remote add heroku git@heroku.com:coastguard-quiz.git
share|improve this answer

I'm not sure how it'll affect Heroku, but you can change the path in .git/config

share|improve this answer
Thanks for responding Ethan. Could you please explain in more detail how to do that? Sorry I'm very new to all this. I'm aware that .git is a hidden folder in my main project folder but not sure how to access any files/configs inside of it. – Patti Lavallee Feb 24 at 18:13
There's a file inside your .git directory called config. Inside that file, you'll find: [remote "heroku"] and you can change that remote's url field to achieve what you're after. – ethagnawl Feb 24 at 18:15
Thanks Ethan. For those who have never accessed files in .git directory before you run "cd .git" to get inside of the hidden .git directory and then run "open config" that should open config file in text editor. – Patti Lavallee Feb 24 at 18:32
  1. Remove "git@heroku.com:obscure-taiga-9581.git"

git remote rm heroku

then add new remote repository

git remote add heroku git@github.com:your_nick/name_of_repo.git # this is good to copy paste from your github account 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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