Skip to content

Commit

Permalink
Ignore /etc/.git (used by etckeeper) per default, Closes #7.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrud authored and rcrowley committed Mar 23, 2011
1 parent bf864b1 commit 821478f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blueprint/backend/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
# The default list of ignore patterns.
#
# XXX Update `blueprintignore`(5) if you make changes here.
IGNORE = ('/etc/.pwd.lock',
IGNORE = ('/etc/.git',
'/etc/.pwd.lock',
'/etc/alternatives',
'/etc/apparmor',
'/etc/apparmor.d',
Expand Down
1 change: 1 addition & 0 deletions man/man5/blueprintignore.5.ronn
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ As part of `blueprint-create`(1), the `~/.blueprintignore` file that was used to

The following files and directories are part of the default ignore list. They can be negated using `!` just like any other pattern.

* `/etc/.git`
* `/etc/.pwd.lock`
* `/etc/alternatives`
* `/etc/apparmor`
Expand Down

0 comments on commit 821478f

Please sign in to comment.