1
0
mirror of synced 2025-12-21 02:46:50 -05:00
Files
docs/data/reusables/git/remove-git-remote.md
2023-06-05 19:16:36 +00:00

11 lines
333 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
```