diff options
author | Christian Halstrick <christian.halstrick@sap.com> | 2016-06-27 16:00:09 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2016-09-20 10:11:27 +0200 |
commit | 45ee55d0d9537c77f025d6c30e434149154d8ec4 (patch) | |
tree | 2559c870dc16dc8ac3849685d9bc2ee3c2c04bcb /org.eclipse.jgit.lfs/resources/org/eclipse/jgit | |
parent | b70f3a7457dd42b9bb2146bbe2eb3baf214bea28 (diff) | |
download | jgit-45ee55d0d9537c77f025d6c30e434149154d8ec4.tar.gz jgit-45ee55d0d9537c77f025d6c30e434149154d8ec4.zip |
Add built-in LFS clean filter
Adds a JGit built-in implementation of the "git lfs clean" filter. This
filter should do the same as the one described in [1]. But since this
filter is written in Java and can be called by JGit without forking new
processes it should be much faster
[1]
https://github.com/github/git-lfs/blob/master/docs/man/git-lfs-clean.1.ronn
Change-Id: If60e387e97870245b4bd765eda6717eb84cffb1d
Diffstat (limited to 'org.eclipse.jgit.lfs/resources/org/eclipse/jgit')
-rw-r--r-- | org.eclipse.jgit.lfs/resources/org/eclipse/jgit/lfs/internal/LfsText.properties | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jgit.lfs/resources/org/eclipse/jgit/lfs/internal/LfsText.properties b/org.eclipse.jgit.lfs/resources/org/eclipse/jgit/lfs/internal/LfsText.properties index 7c3aea2261..25c101f0b0 100644 --- a/org.eclipse.jgit.lfs/resources/org/eclipse/jgit/lfs/internal/LfsText.properties +++ b/org.eclipse.jgit.lfs/resources/org/eclipse/jgit/lfs/internal/LfsText.properties @@ -1,7 +1,8 @@ incorrectLONG_OBJECT_ID_LENGTH=Incorrect LONG_OBJECT_ID_LENGTH. +inconsistentMediafileLength=mediafile {0} has unexpected length; expected {1} but found {2}. invalidLongId=Invalid id: {0} invalidLongIdLength=Invalid id length {0}; should be {1} requiredHashFunctionNotAvailable=Required hash function {0} not available. repositoryNotFound=Repository {0} not found repositoryReadOnly=Repository {0} is read-only -lfsUnavailable=LFS is not available for repository {0}
\ No newline at end of file +lfsUnavailable=LFS is not available for repository {0} |