Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In what git version became the git config --local option available, and where can I read more about it?

I thought that not providing --global will automatically assume that it's a local config variable. Why was this new option necessary?

share|improve this question
As to why it's necessary, one can speculate that it is for filtering, e.g. used with --list – johnny Mar 9 '12 at 14:07

1 Answer

up vote 2 down vote accepted

Since the git sources are maintained in git, we can find the revision that introduced the --local option:

commit 57210a678a8bedd222bf4478eeb0a664d9dd5369
Author: Sverre Rabbelier <srabbelier@gmail.com>
Date:   2010-08-03 20:59:23 -0500

    config: add --local option

    This is a shorthand similar to --system but instead uses
    the config file of the current repository.

It appears that this change first appeared in release 1.7.4 which came out in late 2010 or so.

As far as I can tell from a quick look at the source code (builtin/config.h) and man page, the default is local unless certain environment variables are set, particularly $GIT_CONFIG. The --local option explicitly overrides any environment variable settings.

share|improve this answer
Just what I was looking for! Thanks Keith. – András Szepesházi Mar 9 '12 at 11:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.