“Git Delete Branch” Respostas de código

Git Excluir ramo remoto

# Delete remote branch
git push origin -d remote_branch_name

# Delete local branch
git branch -d local_branch_name

# Force delete if getting merge error
git branch -D local_branch_name
Tofufu

Como excluir um ramo Git localmente e remotamente

$ git push -d <remote_name> <branchname>
$ git branch -d <branchname>

// In most cases, <remote_name> will be origin.
Stefano

como excluir o ramo no git

// Delete local branch

git branch -d <local_branch_name>


// Delete remote branch

git push origin --delete <remote_branch_name>
Sore Sardine

Git Delete Branch

# deleting a local branch
$ git branch -d <branch_name>
$ git branch -D <branch_name> # forced

# deleting a remote branch
$ git push <remote_name> --delete <branch_name>
Joeyeyey

Git Delete Branch

git branch -D <branch name>
cadot.eu

Git Delete Branch

git branch -D branch_name_to_delete
#forces deletion of branch named
Michael Futral

Respostas semelhantes a “Git Delete Branch”

Perguntas semelhantes a “Git Delete Branch”

Mais respostas relacionadas para “Git Delete Branch” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código