Package org.eclipse.jgit.treewalk.filter

Examples of org.eclipse.jgit.treewalk.filter.PathFilter


          rootTree.back(1);
        }

        try {
          configWalk.setRecursive(false);
          PathFilter filter = PathFilter.create(Constants.DOT_GIT_MODULES);
          configWalk.setFilter(filter);
          while (configWalk.next()) {
            if (filter.isDone(configWalk)) {
              modulesConfig = new BlobBasedConfig(null, repository,
                  configWalk.getObjectId(0));
              return this;
            }
          }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.treewalk.filter.PathFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.