git add remote master code example
Example 1: git remote add
git remote add origin https://github.com/user/repo.git
Example 2: adding remote origin git
git remote add origin <link>
Example 3: 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)