Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git remove remote

$ git remote -v
# View current remotes
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
> destination  https://github.com/FORKER/REPOSITORY.git (fetch)
> destination  https://github.com/FORKER/REPOSITORY.git (push)

$ git remote rm destination
# Remove remote
$ git remote -v
# Verify it's gone
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
Comment

remove git remote

# git remote rm <Remote Name>  
$ git remote rm origin
Comment

remove a git remote origin

git remote remove [remote name]
Comment

remove remote origin git

git remote add origin yourRemoteUrl
Comment

PREVIOUS NEXT
Code Example
Shell :: install rethinkdb on ubuntu 
Shell :: split string using linux cmd 
Shell :: install tar.xz in ubuntu 
Shell :: INSTALL VMwareTools on terminal ap=get 
Shell :: ubunto give permission for a user 
Shell :: download visual studio 2019 for ubuntu 
Shell :: how to install fish in debian 
Shell :: how to install pycord 
Shell :: cmd copy all files to another folder 
Shell :: ubuntu start cronjob 
Shell :: remove commits from github 
Shell :: install termius ubuntu 
Shell :: squash commit history git 
Shell :: how to test if docker is running from boot 
Shell :: set time in kali linux 
Shell :: install minikube 
Shell :: install composer on ubuntu 20.04 
Shell :: w10 reboot cmf 
Shell :: kill a process linux 
Shell :: npm install strapi 
Shell :: osx stop httpd 
Shell :: linux delete files older than 
Shell :: insert a line at a line number sed 
Shell :: command not found: shopify 
Shell :: remove white space from stering in bash 
Shell :: whereis alpine 
Shell :: docker disable auto start 
Shell :: ionic capacitor motion 
Shell :: check user shell in linux 
Shell :: bash sed with variable 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =