Answers for "heroku new app from git"

7

git push to heroku

$ git push heroku master
Posted by: Guest on March-01-2020
1

heroku git steps

# clone project (replace my-app with your app's name)
git clone [email protected]:my-app.git

# add git remote to existing directory (replace my-app with your app's name)
git remote add heroku [email protected]:my-app.git

# stage, commit, and push changes (assuming main is the default branch)
git add .
git commit -am "commit message goes here"
git push heroku main
Posted by: Guest on May-30-2021
0

deploying to heroku from git

$ git push heroku master
Initializing repository, done.
updating 'refs/heads/master'
...
Posted by: Guest on February-28-2020

Browse Popular Code Answers by Language