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,937
  • 3
  • 20
  • 30

1 Answers1

1

You need to auth with heroku:

heroku auth:login

and go from there.

Neil Middleton
  • 22,105
  • 18
  • 80
  • 134