Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg2009-12-18 23:12:15 +0000
committerRobin Rosenberg2009-12-21 04:32:29 +0000
commit6651b1d087f197c6ddb1553558c1fc07f1dc4c7a (patch)
tree1b1a6d57fc46aa22955355cdfc74acbd3551fefe /org.eclipse.egit.core.test/META-INF
parent9fd991fcc6c8cde8eda431cfd8a87fa7ff0637f6 (diff)
downloadegit-6651b1d087f197c6ddb1553558c1fc07f1dc4c7a.tar.gz
egit-6651b1d087f197c6ddb1553558c1fc07f1dc4c7a.tar.xz
egit-6651b1d087f197c6ddb1553558c1fc07f1dc4c7a.zip
Implement GIT_CEILING_DIRECTORIES for Eclipse.
If this environment variable is set it will be interpreted as a list of directories above which the Git Team Provider does not search for repositories. The key here is "search". By explicitly pointing at a repository it can still be used, regardless of where it is located. This feature is mostly useful for testing, but can possibly be used to cut of scans into network directories, which is the original rationale for the implementation in C Git. Change-Id: I0d39eaa63670030b495148a4cf2a57add7185f89 Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Diffstat (limited to 'org.eclipse.egit.core.test/META-INF')
-rw-r--r--org.eclipse.egit.core.test/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.egit.core.test/META-INF/MANIFEST.MF b/org.eclipse.egit.core.test/META-INF/MANIFEST.MF
index 6f47cc8ba3..438bed4f56 100644
--- a/org.eclipse.egit.core.test/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.core.test/META-INF/MANIFEST.MF
@@ -10,7 +10,8 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.egit.core,
org.eclipse.egit.ui,
org.eclipse.jgit,
- org.eclipse.core.filesystem
+ org.eclipse.core.filesystem,
+ org.eclipse.jgit.junit;bundle-version="0.6.0"
Bundle-ActivationPolicy: lazy
Import-Package: org.eclipse.core.resources,
org.eclipse.jdt.core,

Back to the top