I think you are really asking how to make a bare repository open. Although this is probably the easiest to repeat, this also works:
First, make sure that all internal git files (e.g. index, HEAD) and folders (e.g. hooks, info, objects, refs) are in a folder named .git. This is probably not the case now that your repository is still bare. So just rename it. Then move this to the folder in which you want to become the working directory.
And then at the working directory level:
git config core.bare 0 git checkout -f
However, it's easier to just clone again; -)
source share