someone@somenet.org
 
 
-RECOMMENDED CLIENT CONFIGURATION
---------------------------------------------------------------------------
+RECOMMENDED CONFIGURATION
+----------------------------------------------------------------------
     # Show forgotten whitespaces.
-git config color.ui true
-git config color.diff.whitespace red reverse
+git config --global color.ui true
+git config --global color.diff.whitespace red reverse
 
 
-       # remove removed branches + tags.
+    # remove removed branches + tags.
 git config --global fetch.prune true
 git config --global fetch.pruneTags true
 
 
-
 ################
 # Use rebasing #
 ################
 git config --global branch.autosetuprebase always
-git config --global rebase.stat true
 git config --global branch.master.rebase true
-
+git config --global rebase.stat true
 
 
 #################
 #################
     # Make Git convert all the types of newline to "\n".
     # Might break some stuff.
-git config core.autocrlf input
---------------------------------------------------------------------------
+git config --global core.autocrlf true
+----------------------------------------------------------------------
 AUTOGENERATED FILE.