¡Te damos la bienvenida al nuevo sysarmy --help! Para recuperar tu usuario pedí un password reset.
¿Cómo borrar un branch local y remoto en git?
Buenas noches, me ocurre esto y no tengo solución.
¿Qué debo hacer para eliminar correctamente el brach "origin/bugfix" tanto de forma local como 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 up-to-date $ git pull From github.com:gituser/gitproject * [new branch] bugfix -> origin/bugfix Already up-to-date.
Mejor respuesta
-
git branch -d bugfix git push origin :bugfix
Aunque de igual manera no borraría los bufixies.
Accede o Regístrate para comentar.