diff options
author | Charley Wang <chwang@redhat.com> | 2010-07-13 00:34:15 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2010-07-13 00:34:15 +0200 |
commit | b878cdcf6b4c2445553dcd1507d5c3008bf56b7b (patch) | |
tree | 878383c68bc6fccf4aec8f25416dcec27e86a931 /org.eclipse.jgit/META-INF | |
parent | d1378e4c51ea20c96a9f4b3efb7333eadf99f141 (diff) | |
download | jgit-b878cdcf6b4c2445553dcd1507d5c3008bf56b7b.tar.gz jgit-b878cdcf6b4c2445553dcd1507d5c3008bf56b7b.zip |
Add compatibility with gitignore specifications
This patch adds ignore compatibility to jgit. It encompasses
exclude files as well as .gitignore. Uses TreeWalk and
FileTreeIterator to find nodes and parses .gitignore
files when required. The patch includes a simple cache that
can be used to save results and avoid excessive gitignore
parsing.
CQ: 4302
Bug: 303925
Change-Id: Iebd7e5bb534accca4bf00d25bbc1f561d7cad11b
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Signed-off-by: Stefan Lay <stefan.lay@sap.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/META-INF')
-rw-r--r-- | org.eclipse.jgit/META-INF/MANIFEST.MF | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/META-INF/MANIFEST.MF b/org.eclipse.jgit/META-INF/MANIFEST.MF index 258e6781b5..51d440e58e 100644 --- a/org.eclipse.jgit/META-INF/MANIFEST.MF +++ b/org.eclipse.jgit/META-INF/MANIFEST.MF @@ -11,6 +11,7 @@ Export-Package: org.eclipse.jgit;version="0.9.0", org.eclipse.jgit.dircache;version="0.9.0", org.eclipse.jgit.errors;version="0.9.0", org.eclipse.jgit.fnmatch;version="0.9.0", + org.eclipse.jgit.ignore;version="0.9.0", org.eclipse.jgit.lib;version="0.9.0", org.eclipse.jgit.merge;version="0.9.0", org.eclipse.jgit.nls;version="0.9.0", |