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

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

		Instance.existingBranches = GitSystem.GetBranchList();
	}
Beispiel #3
0
 static void GitCreateBranch()
 {
     GitCreateBranchWindow.Init();
 }