I'm doing a simple git init C:\XXX
running from my master machine to be executed on another slave machine. C:\XXX
is a path in the slave. The assumption is that it would create a non bare repository as I did not provide a --bare
option. Also I looked at the system, global config settings in the slave machine and specifically set the bare = false
option in these. But even then after running the git init
I can see the local config having bare = true
.
From where does the init command takes the bare settings by default?