From fe0a884ba7bc136bdb1749153d3539a51791b84e Mon Sep 17 00:00:00 2001 From: duritong Date: Tue, 9 Nov 2010 21:58:39 +0800 Subject: [PATCH] Fix readme about config setting According to current man pages of git-config there is no = to set the config value. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.