adding remote repositiores git code example
Example 1: git connect to remote repository
git init
git commit -m "[message]"
git remote add origin "github repository link"
git push -u origin master
Example 2: git remote
git remote add origin https://github.com/xxx/xxx-new.git
git branch -M main
git push -u origin main