“Cómo eliminar la rama maestra local en Git” Código de respuesta

git eliminar remoto

$ git remote -v
# View current remotes
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
> destination  https://github.com/FORKER/REPOSITORY.git (fetch)
> destination  https://github.com/FORKER/REPOSITORY.git (push)

$ git remote rm destination
# Remove remote
$ git remote -v
# Verify it's gone
> origin  https://github.com/OWNER/REPOSITORY.git (fetch)
> origin  https://github.com/OWNER/REPOSITORY.git (push)
Frantic Fox

Cómo eliminar la rama maestra local en Git

git delete
Grieving Goshawk

Respuestas similares a “Cómo eliminar la rama maestra local en Git”

Preguntas similares a “Cómo eliminar la rama maestra local en Git”

Más respuestas relacionadas con “Cómo eliminar la rama maestra local en Git” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código