diff options
author | Jon Bernard <jbernard@jbernard.io> | 2016-10-11 10:42:12 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@jbernard.io> | 2016-10-11 10:42:12 -0400 |
commit | e94accc4c6d00f8b496dcd431b6bf83b61afa00d (patch) | |
tree | 730deeb4fa2c03455f349cb239fc45cc788580a0 | |
parent | 18e6a9860aaad4e0350a27931bb381ffe00da52f (diff) | |
download | dotfiles-e94accc4c6d00f8b496dcd431b6bf83b61afa00d.tar.gz dotfiles-e94accc4c6d00f8b496dcd431b6bf83b61afa00d.tar.bz2 dotfiles-e94accc4c6d00f8b496dcd431b6bf83b61afa00d.zip |
Ignore .gitignore in a repository
-rw-r--r-- | dotfiles/repository.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/repository.py b/dotfiles/repository.py index 79b85b5..1293b28 100644 --- a/dotfiles/repository.py +++ b/dotfiles/repository.py @@ -8,7 +8,7 @@ from .exceptions import NotRootedInHome, InRepository, IsDirectory DEFAULT_PATH = '~/Dotfiles' DEFAULT_REMOVE_LEADING_DOT = True -DEFAULT_IGNORE_PATTERNS = ['.git', 'README*', '*~'] +DEFAULT_IGNORE_PATTERNS = ['.git', '.gitignore', 'README*', '*~'] DEFAULT_HOMEDIR = py.path.local('~/', expanduser=True) |