Exemplo n.º 1
0
 /// <summary>
 /// Initializes the <see cref="StaticShell"/> class.
 /// </summary>
 static StaticShell()
 {
     if (MyShell == null)
     {
         MyShell = new GitShell();
     }
 }
Exemplo n.º 2
0
    public static void Init()
    {
        GitShell window = (GitShell)EditorWindow.GetWindow(typeof(GitShell));

        window.title = "Git";
        window.Show();
    }
Exemplo n.º 3
0
        private static string Clone(string url, string baseDest, string name)
        {
            string path = Path.Combine(baseDest, name);

            if (!Directory.Exists(path))
            {
                GitShell.Clone(url, path);
            }
            return(path);
        }
Exemplo n.º 4
0
 // Base constructor
 public GitDiffTestPanel(GitShell owner) : base(owner)
 {
 }
Exemplo n.º 5
0
 // Base constructor
 public GitStatusPanel(GitShell owner) : base(owner)
 {
 }
Exemplo n.º 6
0
 public GitPanel(GitShell owner)
 {
     _Shell = owner;
 }
Exemplo n.º 7
0
 // Base constructor
 public GitRefsPanel(GitShell owner) : base(owner)
 {
 }
Exemplo n.º 8
0
 public GitPanel(GitShell owner)
 {
     _Shell = owner;
 }
Exemplo n.º 9
0
 // Base constructor
 public GitAboutPanel(GitShell owner) : base(owner)
 {
 }
Exemplo n.º 10
0
 // Base constructor
 public GitStatusPanel(GitShell owner)
     : base(owner)
 {
 }
Exemplo n.º 11
0
 // Base constructor
 public GitRefsPanel(GitShell owner)
     : base(owner)
 {
 }