connect to remote repo git code example
Example 1: how to connect remote repo with local repo
git remote add origin <remote_repo_url>
git push --all origin
If you want to set all of your branches to
automatically use this remote repo when you use git pull, add --set-upstream to the push:
git push --all --set-upstream origin
Example 2: connect local repository to remote git
git remote add origin <remote repository URL>
git remote -v
git push origin master
Example 3: adding remote origin git
git remote add origin <link>
Example 4: git how to add remote
git remote add new_repo_name ssh://[email protected]:foo/bar/baz.git
git remote -v
new_repo_name https://second.repo.dev/foo/bar.git (fetch)
new_repo_name https://second.repo.dev/foo/bar.git (push)
origin https://first.repo.dev/bar/baz.git (fetch)
origin https://first.repo.dev/bar/baz.git (push)