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 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 [email protected]:user/repo.git (fetch) | |
# origin [email protected]:user/repo.git (push) | |
# destination [email protected]:forker/repo.git (fetch) | |
# destination [email protected]:forker/repo.git (push) | |
git remote rm destination | |
# Remove remote | |
git remote -v | |
# Verify removal | |
# origin [email protected]:user/repo.git (fetch) | |
# origin [email protected]:user/repo.git (push) |
Muchas gracias por la ayuda.
Gracias!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
De gran ayuda!