Add or Set Remote URL
To add a remote repository to a existing git project or to update the existing rep
git remote add origin https://github.com/USERNAME/REPOSITORY.git
-- or --
git remote add origin [email protected]:USERNAME/REPOSITORY.gitgit remote set-url origin https://github.com/USERNAME/REPOSITORY.git
-- or --
git remote set-url origin [email protected]:USERNAME/REPOSITORY.gitgit remote -vLast updated