how to connect local git to github code example
Example 1: connect local repository to remote git
git remote add origin <remote repository URL>
# Sets the new remote
git remote -v
# Verifies the new remote URL
git push origin master
Example 2: How to upload a files to a repository on github using gitbash
git init
git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master or git push -f origin master
Example 3: connect to git repo with ssh-rsa
$ ssh -T [email protected]