Package gitflow

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


    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

Related Classes of gitflow.GitflowBranchUtil

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.