From: Junio C Hamano <hidden> Date: 2016-06-15 22:47:51
Yakup Akbay [off-list ref] writes:
When I repeat the following n times
$ git config color.ui always
$ git config --unset color.ui
it ends up the section name [color] n times in the .git/config file.
like this for n=4:
[color]
[color]
[color]
[color]
Using git version 1.6.5.3 (I don't know whether this is already fixed
in in later versions)
If I recall correctly, this hasn't been even noticed/reported/recognized
as an issue, ever since the "git repo-config" was introduced (which later
was renamed to "git config"). Dscho, do you remember details?
Heya,
On Mon, Dec 7, 2009 at 21:04, Junio C Hamano [off-list ref] wrote:
If I recall correctly, this hasn't been even noticed/reported/recognized
as an issue, ever since the "git repo-config" was introduced (which later
was renamed to "git config").
I poked Dscho about it at some point.
Dscho, do you remember details?
He told me that the 'git config' code is so horrible that it's
nigh-impossible to change the behavior, hence why he didn't do it :P.
--
Cheers,
Sverre Rabbelier
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:47:51
Hi,
On Mon, 7 Dec 2009, Junio C Hamano wrote:
Yakup Akbay [off-list ref] writes:
quoted
When I repeat the following n times
$ git config color.ui always
$ git config --unset color.ui
it ends up the section name [color] n times in the .git/config file.
like this for n=4:
[color]
[color]
[color]
[color]
Using git version 1.6.5.3 (I don't know whether this is already fixed
in in later versions)
If I recall correctly, this hasn't been even noticed/reported/recognized
as an issue, ever since the "git repo-config" was introduced (which later
was renamed to "git config"). Dscho, do you remember details?
IIRC, due to technical limitations, the config machinery only recognizes
sections if there is at least _one_ entry in them. This is because
git_config() is used to determine (from the current file position) where
the section begins.
And likewise, due to those technical limitations, the section header is
not removed when the last entry in the section is removed (this was
because I did not want to change the location of the section, but due to
the mentioned limitation, that did not work out).
Ciao,
Dscho
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:47:51
Hi,
On Mon, 7 Dec 2009, Sverre Rabbelier wrote:
On Mon, Dec 7, 2009 at 21:04, Junio C Hamano [off-list ref] wrote:
quoted
If I recall correctly, this hasn't been even
noticed/reported/recognized as an issue, ever since the "git
repo-config" was introduced (which later was renamed to "git config").
I poked Dscho about it at some point.
quoted
Dscho, do you remember details?
He told me that the 'git config' code is so horrible that it's
nigh-impossible to change the behavior, hence why he didn't do it :P.
Actually, I said something about the most obvious route being to re-use
git_config() and that this approach had its limitations.
I also said that I earned (probably rightfully) a reputation of lousy code
with Junio, which makes me think that I probably should refrain from ever
contributing code to Git again.
Ciao,
Dscho