Reputation: 1997
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?
Upvotes: 2
Views: 686
Reputation: 22238
You need to auth with heroku:
heroku auth:login
and go from there.
Upvotes: 1