diff options
author | Remco Wendt <remco@maykinmedia.nl> | 2011-10-24 00:45:32 +0200 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2011-10-23 23:57:55 -0400 |
commit | b473ca7e58a618bcf09417914c036e21ae4ce3f8 (patch) | |
tree | 317a478debaf90a8c3d35ce1cfd601f0b05f6427 | |
parent | 4fb4c7999ffaed3bd9bbc2587d17bcfd5504987c (diff) | |
download | dotfiles-b473ca7e58a618bcf09417914c036e21ae4ce3f8.tar.gz dotfiles-b473ca7e58a618bcf09417914c036e21ae4ce3f8.tar.bz2 dotfiles-b473ca7e58a618bcf09417914c036e21ae4ce3f8.zip |
Updated documentation to include glob option for ignore
-rw-r--r-- | README.rst | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -81,7 +81,8 @@ example configuration file might look like: :: repository = ~/Dotfiles ignore = [ '.git', - '.gitignore'] + '.gitignore', + '*.swp'] externals = { '.bzr.log': '/dev/null', '.uml': '/tmp'} @@ -124,9 +125,11 @@ I have the following in my ``~/.dotfilesrc``: :: [dotfiles] ignore = [ '.git', - '.gitignore'] + '.gitignore', + '*.swp] -Any file you list in ``ignore`` will be skipped. +Any file you list in ``ignore`` will be skipped. The ``ignore`` option supports +glob file patterns. License ------- |