git connect remote code example
Example 1: git add remote
$ git remote add origin https://github.com/user/repo.git
$ git remote -v
> origin https://github.com/user/repo.git (fetch)
> origin https://github.com/user/repo.git (push)
Example 2: connect local repository to remote git
git remote add origin <remote repository URL>
git remote -v
git push origin master
Example 3: git connect to remote repository
git init
git commit -m "[message]"
git remote add origin "github repository link"
git push -u origin master
Example 4: git remote
git remote add origin https://github.com/xxx/xxx-new.git
git branch -M main
git push -u origin main