How can I convert a 'normal' Git repository to a bare one?
The main difference seems to be:
in the normal git repository you have a
.gitfolder inside the repository containing all relevant data and all other files build your working copyin a bare Git repository, there is no working copy and the folder (let's call it
repo.git) contains the actual repository data

mv repo/.git repo.git; rm -rf repo– eegg Jun 2 '11 at 17:15&&instead of;in casemvfails! – user1203803 Jul 28 '12 at 16:25