“Remobve git remoto” 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

Remobve git remoto

git remote set-url origin git://new.url.here
Mysterious Mandrill

Respuestas similares a “Remobve git remoto”

Preguntas similares a “Remobve git remoto”

Más respuestas relacionadas con “Remobve git remoto” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código