Push to Git Repository
It's now time to push to the git repository and configure our CI and CD to deploy our application on Heroku. To do that you first need to Create a Git Repository.
After creating the repo you can connect your project to the remote git repo (if you didn't use hub create
command)
git remote add origin [email protected]:renuo/[project-name].git
and push using:
git add .
git commit -m "Initial commit"
git push -u origin main