git remote add [<options>] <name> <url> code example
Example 1: git set origin
git remote -v
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
Example 2: git remote add
git remote add origin https://github.com/user/repo.git
Example 3: set git origin
git remote add origin git@git.assembla.com:portfolio/space.space_name.git
Example 4: add remote in git
git remote add origin git@git.assembla.com:portfolio/space.space_name.git#set a new remotegit remote -v#Verify new remoteorigin git@git.assembla.com:portfolio/space.space_name.git (fetch)origin git@git.assembla.com:portfolio/space.space_name.git (push)