Merge branch 'mm/config-intro-in-git-doc'
authorJunio C Hamano <gitster@pobox.com>
Tue, 19 Feb 2013 00:04:58 +0000 (16:04 -0800)
committerJunio C Hamano <gitster@pobox.com>
Tue, 19 Feb 2013 00:04:58 +0000 (16:04 -0800)
* mm/config-intro-in-git-doc:
  git.txt: update description of the configuration mechanism

Documentation/git.txt

index 0b681d9a1437df3911146ed0e58884db17dd14d4..2d975e3b0143cd1a56e2709d0d3977925906fcf0 100644 (file)
@@ -535,10 +535,9 @@ include::cmds-purehelpers.txt[]
 Configuration Mechanism
 -----------------------
 
-Starting from 0.99.9 (actually mid 0.99.8.GIT), `.git/config` file
-is used to hold per-repository configuration options.  It is a
-simple text file modeled after `.ini` format familiar to some
-people.  Here is an example:
+Git uses a simple text format to store customizations that are per
+repository and are per user.  Such a configuration file may look
+like this:
 
 ------------
 #
@@ -553,13 +552,13 @@ people.  Here is an example:
 ; user identity
 [user]
        name = "Junio C Hamano"
-       email = "junkio@twinsun.com"
+       email = "gitster@pobox.com"
 
 ------------
 
 Various commands read from the configuration file and adjust
 their operation accordingly.  See linkgit:git-config[1] for a
-list.
+list and more details about the configuration mechanism.
 
 
 Identifier Terminology