git connect remote code example

Example 1: git add remote

$ git remote add origin https://github.com/user/repo.git
# Set a new remote

$ git remote -v
# Verify new remote
> 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>
# Sets the new remote
git remote -v
# Verifies the new remote URL
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