2

I have two computers for development, both sync my development directory using dropbox so my directories are exactly the same no matter which computer I use. When I use the first computer, I can push to heroku using "git push heroku master" and everything works fine. However, when I go to the second computer, I receive an access denied error.

How do I authorize the second computer to push to the heroku website?

dingalingchickenwiing
  • 1,911
  • 3
  • 19
  • 29

1 Answers1

1

You need to auth with heroku:

heroku auth:login

and go from there.

Neil Middleton
  • 21,912
  • 17
  • 78
  • 132