“Usuń zdalne pochodzenie” Kod odpowiedzi

Usuń zdalne pochodzenie

git remote remove origin
Mysterious Mandrill

git usuń pilot

$ 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

Usuń zdalny git

# The example will remove the github remote. 
# Note that the command will not delete the repository, 
# just the local reference.
git remote rm origin
CharllierJr

Odpowiedzi podobne do “Usuń zdalne pochodzenie”

Pytania podobne do “Usuń zdalne pochodzenie”

Więcej pokrewnych odpowiedzi na “Usuń zdalne pochodzenie” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu