Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
11 lines
325 B
Markdown
11 lines
325 B
Markdown
1. Using the command line, remove any git remotes currently configured for the repository.
|
|
|
|
```shell
|
|
# Show existing remotes
|
|
$ git remote -v
|
|
> origin git@git-server/octocat/hello-world.git (fetch)
|
|
> origin git@git-server/octocat/hello-world.git (push)
|
|
# Remove existing remotes
|
|
$ git remote remove origin
|
|
```
|