GIT - How to add a new remote using GIT CLI
To add a new remote to your existing repo, use the following command
git remote add <new_remote_name> <url>
You can verify the remotes using the command:
git remote -v
Last Updated on
To add a new remote to your existing repo, use the following command
git remote add <new_remote_name> <url>
You can verify the remotes using the command:
git remote -v
Last Updated on
Comments