Describe in your own words how to establish a connection between a local repository and a remote repository on GitHub.
git remote add origin git@github.com:USERNAME/REPO_NAME.git
git branch -M main
git push -u origin main
Describe in your own words how to establish a connection between a local repository and a remote repository on GitHub.
git remote add origin git@github.com:USERNAME/REPO_NAME.git
git branch -M main
git push -u origin main