Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 504 Bytes

first_git_push.md

File metadata and controls

18 lines (13 loc) · 504 Bytes

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