J'ai un dépôt git. Il a A B C D E ... commits. Maintenant, je veux extraire D comme une nouvelle branche nommée Dbranch. Donc j'exécute : git checkout D -b Dbranch
. Et maintenant je veux supprimer cette branche. Tout d'abord, je dois passer à la branche master, puis utiliser la commande git branch -d Dbranch
pour le supprimer. Mais quand j'excute git checkout master
il me donne l'erreur.
error: The following untracked working tree files would be overwritten by checkout:
source/a/foo.c
...... (too many lines)
Please move or remove them before you can switch branches.
Aborting
Comment supprimer le Dbranch ?