Skip to content

Instantly share code, notes, and snippets.

@estadoactivo
Created December 9, 2013 17:49
Show Gist options
  • Save estadoactivo/7876704 to your computer and use it in GitHub Desktop.
Save estadoactivo/7876704 to your computer and use it in GitHub Desktop.
Borrar una conexión con rama remota
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)
@JulianDevz
Copy link

De gran ayuda!

@ricardocredondo
Copy link

Muchas gracias por la ayuda.

@MendozaJulioC
Copy link

Gracias!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment