git ad remote code example

Example 1: git check upstream url

git remote show origin

Example 2: show remote git

# If you require full output and you are on a network that can reach the remote repo where the origin resides 
git remote show origin

Example 3: set git origin

git remote add origin git@git.assembla.com:portfolio/space.space_name.git

Example 4: 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 5: 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)

Example 6: git origin command

git remote add origin git@github.com:User/UserRepo.git
git remote set-url origin git@github.com:User/UserRepo.git