public static void Init()
    {
        // Get existing open window or if none, make a new one:
        Instance = EditorWindow.GetWindow <GitDeleteBranchWindow>(true, "Git Delete Branch");

        Instance.branches = GitSystem.GetBranchList(false);
    }
    public static void Init()
    {
        // Get existing open window or if none, make a new one:
        Instance = EditorWindow.GetWindow<GitDeleteBranchWindow>(true, "Git Delete Branch");

        Instance.branches = GitSystem.GetBranchList(false);
    }
Beispiel #3
0
 static void GitDeleteBranch()
 {
     GitDeleteBranchWindow.Init();
 }