Reputation: 50328
I have a terminal that's logged in to Heroku, but I'm not entirely sure under which userid. How do I check if it's me (as opposed to my coworker), so as to not clobber someone else's heroku app?
Upvotes: 6
Views: 1686
Reputation: 37507
$> heroku auth:whoami
will show you who you are currently authenticated as.
Upvotes: 11