Я неправильно набрал команду git, которая привела к созданию локальной ветви с именем --track.
Я пробовал следующее:
git branch -m --track delme
(this renames the current branch to delme, not the branch called --track)
git checkout --track
> fatal: --track needs a branch name
git branch -d --track
(does nothing, reports nothing)
git branch -D --track
(also does nothing)
git branch -d "--track"
(also does nothing
Как мне удалить эту ветку?