First of all you need to delete the branch you are on. You cannot use git branch -D as this has a safety check against doing this. You can use update-ref to do this.
$ git update-ref -d HEAD
Remember that do not use rm -rf .git or anything like this as this will completely wipe your entire repository including all other branches as well as the branch that you are trying to reset.