I actually want to remove a branch in the bare repository i am working with, but this task hits a dead end because I cannot switch away from the master repository without a 'work tree' which a bare repository does not have.

When I run git branch -d master the output is:

error: Cannot delete the branch 'master' which you are currently on.

So I try to switch to another branch called 'develop' by running git checkout develop and the output is:

fatal: This operation must be run in a work tree
link|improve this question

This looks like a duplicate of stackoverflow.com/q/3301956/4918, but is exactly my use-case and much better to read. Thus I +1 here and do not flag, just link. – David Schmitt Aug 30 '11 at 14:00
feedback

1 Answer

up vote 19 down vote accepted

Try this instead of git checkout:

git symbolic-ref HEAD refs/heads/develop

Then you should be able to delete master.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.