Here I am self learning how to push an entirely new repo to GitHub
git init
NB:* Ony run this if you have not initiated git in this directory earlier This parent directory can contain as many sub-directories and files as your project requires
git add .
git commit -m "brief description of the commit or repo"
git remote add <nameofrepo> <repo url>
git push <nameofrepo>
Repo name must be consistent
your local computer has been configured for Git. Follow this Link to learn how to configure your local machine and push your first git repository._
Hurray! 🎉🎊you just created a new repo on GitHub from your local computer 👏