`git: remote` is not a heroku command

I deployed the application a few days ago and I am trying to change some pages. To work with my current version, I wanted to get my files from the hero.

I used:

heroku git:remote -a fierce-escarpment-8305

as stated at https://devcenter.heroku.com/articles/git .

and received a message:

  !    `git:remote` is not a heroku command.
  !    See `heroku help` for a list of available commands.

I do not know what it means. Can anybody help me?

thank

+5
source share
1 answer

heroku git:remote- A fairly new addition to the Heroku jewel ( it was added in version 2.30.0 on July 25, 2012 ). Since this is so recent, you probably have an older version installed.

Test your version with this command:

heroku --version

2.30.0, :

gem update heroku

Gem ( ) Heroku Toolbelt heroku. toolbelt.heroku.com.

+12

All Articles