]> asedeno.scripts.mit.edu Git - git.git/blobdiff - Documentation/git-config.txt
Merge branch 'js/rsync-local' into maint
[git.git] / Documentation / git-config.txt
index 697824cbabdd4bab487b8c943277d3a1d703e59a..6ab2af4b61e2188297e15f2e3c1d9c5f05f680b8 100644 (file)
@@ -130,6 +130,10 @@ See also <<FILES>>.
        in the config file will cause the value to be multiplied
        by 1024, 1048576, or 1073741824 prior to output.
 
+--bool-or-int::
+       'git-config' will ensure that the output matches the format of
+       either --bool or --int, as described above.
+
 -z::
 --null::
        For all options that output values and/or keys, always
@@ -222,7 +226,7 @@ Given a .git/config like this:
 
        ; Our diff algorithm
        [diff]
-               external = "/usr/local/bin/gnu-diff -u"
+               external = /usr/local/bin/diff-wrapper
                renames = true
 
        ; Proxy settings
@@ -279,7 +283,7 @@ If you want to know all the values for a multivar, do:
 % git config --get-all core.gitproxy
 ------------
 
-If you like to live dangerous, you can replace *all* core.gitproxy by a
+If you like to live dangerously, you can replace *all* core.gitproxy by a
 new one with
 
 ------------