Horje
how to delete local master branch in git Code Example
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)
how to delete local master branch in git
git delete




Shell

Related
mysql database drop Code Example mysql database drop Code Example
how to install source plugin gatsby Code Example how to install source plugin gatsby Code Example
how to install kivy.app Code Example how to install kivy.app Code Example
bash command to open file explorer Code Example bash command to open file explorer Code Example
writing to a text file in batch script Code Example writing to a text file in batch script Code Example

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