Currently I have the following entry in my .gitconfig in my user directory.
...
[http]
sslCAInfo=C:\\\\Users\\\\julian.lettner\\\\.ssh\\\\gi
Use:
git config --local ...
To specify per-repository settings. Local settings are stored in the .git directory.
An overview of the three locations where git can store settings:
--local: Repository specific, /.git/config --global: User-specific, ~/.gitconfig--system: System default, /etc/gitconfigMore specific ones override more general settings, i.e. local overrides both global and system.