Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accidentally created a branch called --track, and now I can't delete it

So I ran this command:

git checkout -b --track origin/RB_1.4.5

I thought that it would create a local branch by the same name and set it up to track the remote branch, but instead it created a branch called --track. I could have sworn that omitting the local branch name will normally cause it to assume you want the same name as the remote branch, but I guess this wasn't the case.

Now running:

git branch

gives me:

* --track
  master

I've tried checking out master and then running:

git branch -D --track  (as well as "--track")

but that doesn't do anything (no errors or anything).

I tried removing the corresponding lines in .git/config, but still no dice.

How can I remove that branch? Also, in the future, is there a way to do what I wanted and still not have to re-type the local branch name?

like image 873
solidcell Avatar asked May 03 '11 18:05

solidcell


1 Answers

Try

git branch -D -- --track

Should tell git to ignore dashes after --

like image 199
tauran Avatar answered Sep 23 '22 05:09

tauran