Horje
remove remote origin Code Example
remove remote origin
git remote remove origin
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)
remove remote git
# The example will remove the github remote. 
# Note that the command will not delete the repository, 
# just the local reference.
git remote rm origin




Shell

Related
conda install keras Code Example conda install keras Code Example
install docker on manjaro linux Code Example install docker on manjaro linux Code Example
git remove origin Code Example git remove origin Code Example
the windows subsystem for linux component is not enabled Code Example the windows subsystem for linux component is not enabled Code Example
remove remote origin github Code Example remove remote origin github Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16