Examples of GitflowBranchUtil


Examples of gitflow.GitflowBranchUtil

    @Override
    public void actionPerformed(AnActionEvent e) {
        virtualFileMananger = VirtualFileManager.getInstance();
        myProject=e.getProject();
        branchUtil=new GitflowBranchUtil(myProject);
        repo = GitBranchUtil.getCurrentRepository(myProject);
        repos.add(repo);

        if (repo!=null){
            currentBranchName= GitBranchUtil.getBranchNameOrRev(repo);
View Full Code Here

Examples of gitflow.GitflowBranchUtil

    boolean trackedAllFeatureBranches;
    boolean trackedAllReleaseBranches;

    public GitflowActions(@NotNull Project project){
        myProject=project;
        branchUtil=new GitflowBranchUtil(project);
        virtualFileMananger = VirtualFileManager.getInstance();

        repo = GitBranchUtil.getCurrentRepository(myProject);

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.