Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force-include the specified paths in 'create' #151

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

wavexx
Copy link

@wavexx wavexx commented Dec 14, 2014

Ensure that if a PATH is specified directly in attic create is going to be
included in the archive irregardless of the --exclude rules.

We achieve this by building an intermediate exclusion list, and checking each
exclusion pattern directly against the specified path. If the pattern matches,
it's removed.

This allows to have general exclusion rules while still including wanted
subtrees in the archive. With the following file list:

root/file1
root/unwanted/subtree1/file2
root/unwanted/subtree2/file3

The command:

attic create archive::name --exclude root/unwanted root root/unwanted/subtree2

Will correctly archive:

root/file1
root/unwanted/subtree2/file3.

This reduces (removes?) the need of an additional --include flag (as suggested in #104), since it
reduces the include/exclude logic to the most specific pattern directly
specified on the command line.

Ensure that if a PATH is specified directly in ``attic create`` is going to be
included in the archive irregardless of the --exclude rules.

We achieve this by building an intermediate exclusion list, and checking each
exclusion pattern directly against the specified path. If the pattern matches,
it's removed.

This allows to have general exclusion rules while still including wanted
subtrees in the archive. With the following file list:

  root/file1
  root/unwanted/subtree1/file2
  root/unwanted/subtree2/file3

The command:

  attic create archive::name --exclude root/unwanted root root/unwanted/subtree2

Will correctly archive:

  root/file1
  root/unwanted/subtree2/file3.

This reduces (removes?) the need of an additional --include flag, since it
reduces the include/exclude logic to the most specific pattern directly
specified on the command line.
@mgraham
Copy link

mgraham commented Jul 22, 2015

+1. This would be an excellent feature.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants