Deploying React sites on GitHub pages
Connecting the local repository with the remote
If we have not yet already, let us run these commands in Terminal:
$ git init
$ git remote origin add (remote url on github)
$ git add -A
$ git commit -m "pushing initial version"
$ git push origin...
joncoded.hashnode.dev2 min read