Created
December 9, 2013 17:49
-
-
Save estadoactivo/7876704 to your computer and use it in GitHub Desktop.
Borrar una conexión con rama remota
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git remote -v | |
| # View current remotes | |
| # origin git@github.com:user/repo.git (fetch) | |
| # origin git@github.com:user/repo.git (push) | |
| # destination git@github.com:forker/repo.git (fetch) | |
| # destination git@github.com:forker/repo.git (push) | |
| git remote rm destination | |
| # Remove remote | |
| git remote -v | |
| # Verify removal | |
| # origin git@github.com:user/repo.git (fetch) | |
| # origin git@github.com:user/repo.git (push) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gracias!!!