Change git push arguments from v1.0.0 to v1.5.x

The syntax for pushing to a remote and setting the upstream is as follows ``git push -u <REMOTENAME> <LOCALBRANCHNAME>:<REMOTEBRANCHNAME>``. Since we've cloned branch v1.5.x and made changes to that branch that is our local branch
This commit is contained in:
Edouard Michel 2017-06-04 01:20:50 -04:00 committed by GitHub
parent 16d04d0b4e
commit 6263e20967

View file

@ -27,7 +27,7 @@ Heroku

git add -f Procfile config.json package.json && git commit -am "adding Procfile and configs for Heroku"

12. Push to heroku: ``git push -u heroku v1.0.0:master``
12. Push to heroku: ``git push -u heroku v1.5.x:master``
* Ensure that a proper SSH key was added to your account, otherwise the push will not succeed!
13. Initialise a single dyno: ``heroku ps:scale web=1``
14. Visit your app!