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
DenverCoder1