Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Halstrick2016-06-27 14:00:44 +0000
committerMatthias Sohn2016-09-20 08:58:05 +0000
commitbcb5a431a51703c31ce9d9c1f933e7f00a463021 (patch)
tree1dc40eb06738359fc660a50e57de2220ad4471b4 /org.eclipse.jgit.lfs/META-INF
parent45ee55d0d9537c77f025d6c30e434149154d8ec4 (diff)
downloadjgit-bcb5a431a51703c31ce9d9c1f933e7f00a463021.tar.gz
jgit-bcb5a431a51703c31ce9d9c1f933e7f00a463021.tar.xz
jgit-bcb5a431a51703c31ce9d9c1f933e7f00a463021.zip
Add built-in LFS smudge filter for local case
Adds a JGit built-in implementation of the "git lfs smudge" filter. This filter should do the same as the one described in [1] besides that it only supports the local case when the lfs objects are already present in the media directory. Remote cases where download of LFS objects from an LFS server is needed will be done in a later commit. [1] https://github.com/github/git-lfs/blob/master/docs/man/git-lfs-smudge.1.ronn Change-Id: I8ff661d4edd3667ef7f86f3b4fa33e568eb4c8f4
Diffstat (limited to 'org.eclipse.jgit.lfs/META-INF')
-rw-r--r--org.eclipse.jgit.lfs/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jgit.lfs/META-INF/MANIFEST.MF b/org.eclipse.jgit.lfs/META-INF/MANIFEST.MF
index f1eeb512aa..c8ba3e1bc3 100644
--- a/org.eclipse.jgit.lfs/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.lfs/META-INF/MANIFEST.MF
@@ -10,7 +10,8 @@ Export-Package: org.eclipse.jgit.lfs;version="4.6.0",
org.eclipse.jgit.lfs.internal;version="4.6.0";x-friends:="org.eclipse.jgit.lfs.test",
org.eclipse.jgit.lfs.lib;version="4.6.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
-Import-Package: org.eclipse.jgit.attributes;version="[4.6.0,4.7.0)",
+Import-Package: org.eclipse.jgit.annotations;version="[4.6.0,4.7.0)";resolution:=optional,
+ org.eclipse.jgit.attributes;version="[4.6.0,4.7.0)",
org.eclipse.jgit.internal.storage.file;version="[4.6.0,4.7.0)",
org.eclipse.jgit.lib;version="[4.6.0,4.7.0)",
org.eclipse.jgit.nls;version="[4.6.0,4.7.0)",

Back to the top