aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorduritong <duritong@cronopios.org>2010-11-09 21:58:39 +0800
committerChris Wanstrath <chris@ozmm.org>2010-11-10 03:43:28 +0800
commitfe0a884ba7bc136bdb1749153d3539a51791b84e (patch)
treead0d78939fface1536fd9ceef34d2915f3a363da /README.md
parentd764abff8f68ce1000ba70d536d06d67f7555128 (diff)
downloadgitignore-fe0a884ba7bc136bdb1749153d3539a51791b84e.tar.gz
gitignore-fe0a884ba7bc136bdb1749153d3539a51791b84e.zip
Fix readme about config setting
According to current man pages of git-config there is no = to set the config value.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 737a2243..45da9e3a 100644
--- 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.