Examples of GitlabBranch


Examples of org.gitlab.api.models.GitlabBranch

        return Arrays.asList(branches);
    }
   
    public GitlabBranch getBranch(GitlabProject project, String branchName) throws IOException {
      String tailUrl = GitlabProject.URL + "/" + project.getId() + GitlabBranch.URL + branchName;
        GitlabBranch branch = retrieve().to(tailUrl, GitlabBranch.class);
        return branch;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.