diff options
author | duritong <duritong@cronopios.org> | 2010-11-09 21:58:39 +0800 |
---|---|---|
committer | Chris Wanstrath <chris@ozmm.org> | 2010-11-10 03:43:28 +0800 |
commit | fe0a884ba7bc136bdb1749153d3539a51791b84e (patch) | |
tree | ad0d78939fface1536fd9ceef34d2915f3a363da /README.md | |
parent | d764abff8f68ce1000ba70d536d06d67f7555128 (diff) | |
download | gitignore-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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |