]> source.dussan.org Git - gitignore.git/commitdiff
Fix readme about config setting
authorduritong <duritong@cronopios.org>
Tue, 9 Nov 2010 13:58:39 +0000 (21:58 +0800)
committerChris Wanstrath <chris@ozmm.org>
Tue, 9 Nov 2010 19:43:28 +0000 (03:43 +0800)
According to current man pages of git-config there is no = to set
the config value.

README.md

index 737a2243c88bcf3eb7ec565777be90fc5a72b8ec..45da9e3a42dbef036909fc182f70fef35e4f1bff 100644 (file)
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ For more information on gitignore: [gitignore(5)][g5]
 git has a global configuration that applies rules to all of
 your projects. For example:
 
-    git config --global core.excludesfile=~/.global_ignore
+    git config --global core.excludesfile ~/.global_ignore
 
 ... will apply the rules in ~/.global_ignore for all of your repos.