Code Snippet of steps to push to a github repository
Innitialize the repo by using below line of code
git init
Add files from your local repository to the remote repo
git add .
Stage the added files for commitment
git commit -m "commit message"
Point the staged files to the repo and the branch
g...
hamnanuru.hashnode.dev1 min read