我不小心创建了一个名为-track的git本地分支,如何删除它?

时间:2010-05-02 02:31:18

标签: git

我输入了一个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

如何删除此分支?

1 个答案:

答案 0 :(得分:11)

git branch -d -- --track

通常,--告诉git将所有后续命令行参数视为非选项。

编辑:请参阅评论,以了解git如何使用--