add new origin git code example

Example 1: git set remote

git remote set-url origin https://github.com/USERNAME/REPOSITORY.git

Example 2: adding remote origin git

git remote add origin <link>

Example 3: github add new origin

git init .
git remote add origin <http/someURL>
git pull origin master

Example 4: git add origin command

# To add origin
$ git remote add origin <github repo link>

Example 5: git add remote

git remote add heroku https://git.heroku.com/arrecs.git
git remote -v
-> heroku	https://git.heroku.com/arrecs.git (fetch)
-> heroku	https://git.heroku.com/arrecs.git (push)

git remote remove heroku
git remote -v

Example 6: 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)