[master +0 ~1 -0]> git --version
git version 1.9.5.msysgit.1
I found this answer -- https://stackoverflow.com/a/28520596/107037 -- but can't get it to work for me.
In my ~/.gitconfig, I have
[user]
name = CB
email = cb@gmail.com
[include]
path = "c:/common/git/commonConfig"
then running
> git config --global -l
produces
user.name=CB
user.email=cb@gmail.com
include.path=c:/common/git/commonConfig
I have tried forward slashes, backslashes, quoting the path, not quoting the path....
The one combination I haven't tried is the one that works, apparently.
Thanks for any hints, this is a really powerful feature for sharing settings across computers.