Possible Duplicate:
What's the difference between git clone --mirror and git clone --bare
man git-clone indicates that:
implies --bare
so what is the difference between them?
is --bare more powerful than --mirror option?
What's the difference between git clone --mirror and git clone --bare said --bare option has no expectation of fetching again, then can i fetch new commits to that bare repo? is that allowed to fetch new commits when --bare option is used while cloning a project.