git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Empty config sections are neither deleted nor reused
@ 2016-05-13 14:55 Jonas Bernoulli
  2016-05-13 16:47 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: Jonas Bernoulli @ 2016-05-13 14:55 UTC (permalink / raw)
  To: git

After running

  git init .
  git config foo.bar baz
  git config --unset foo.bar    # 1
  git config foo.bar baz        # 2

.git/config contains

  [core]
          repositoryformatversion = 0
          filemode = true
          bare = false
          logallrefupdates = true
  [foo]
  [foo]
          bar = baz

(1) did not remove the "foo" section when the last contained variable
was unset and (2) did not reuse the empty "foo" section when "foo.bar"
was set again.

I would prefer if unsetting the last variable in a section would cause
the heading of the now empty section would be removed.

But it might also make sense to not remove an empty section and to
instead reuse an empty section.  That would prevent a section from being
moved to eof because it became temporarily empty.  Maybe that was the
intention and Git at some point stopped re-using an empty section?

It could even be argued that it would make sense for empty sections to
be removed *and* reused (in order to "cleanup" old empty sections).

The only possible combination which doesn't make sense is to not remove
an empty section and to also not reuse an empty section - unfortunately
that's what Git currently does.

  Best regards,
  Jonas

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-05-14 18:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-13 14:55 Empty config sections are neither deleted nor reused Jonas Bernoulli
2016-05-13 16:47 ` Junio C Hamano
2016-05-14 13:21   ` Jonas Bernoulli
2016-05-14 15:10     ` Matthieu Moy
2016-05-14 17:33       ` Junio C Hamano
2016-05-14 18:54         ` Jonas Bernoulli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).