30
Como faço para excluir uma ramificação do Git local e remotamente?
Quero excluir uma ramificação local e remotamente. Tentativas com falha para excluir uma ramificação remota $ git branch -d remotes/origin/bugfix error: branch 'remotes/origin/bugfix' not found. $ git branch -d origin/bugfix error: branch 'origin/bugfix' not found. $ git branch -rd origin/bugfix Deleted remote branch origin/bugfix (was 2a14ef7). $ git push Everything …