Example usage for org.eclipse.jgit.transport RefFilter interface-usage

List of usage examples for org.eclipse.jgit.transport RefFilter interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.transport RefFilter interface-usage.

Usage

From source file com.google.gerrit.server.git.ReceiveCommitsRefFilter.java

/** Exposes only the non refs/changes/ reference names. */
class ReceiveCommitsRefFilter implements RefFilter {
    private final RefFilter base;

    public ReceiveCommitsRefFilter(RefFilter base) {
        this.base = base != null ? base : RefFilter.DEFAULT;

From source file org.uberfire.java.nio.fs.jgit.daemon.filters.HiddenBranchRefFilter.java

/**
 * This RefFilter is used to exclude hidden branches
 * from {@link org.eclipse.jgit.transport.UploadPack}.
 * Check {@link org.uberfire.java.nio.fs.jgit.daemon.git.Daemon}
 */
public class HiddenBranchRefFilter implements RefFilter {