Getting the Gui to show gits files.
[Widgit.git] / Git / Commit.cs
bloba59fc0ad14d3c5605bd3de57fc92211f4f190c38
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
5 namespace Git
7 public class Commit : Treeish
9 protected Tree m_child;
10 public Tree Child { get { return m_child; } }
12 List<Commit> m_Parents = new List<Commit>();
13 List<Commit> Parents { get { return new List<Commit>(m_Parents); } }
15 public override string Name { get { return "Commit"; } }
17 public override string ID { get { return m_child.ID; } }
19 public Commit(string path) : base(path)
23 public string Show(string path)
25 throw new NotImplementedException();
28 public List<string> Diff(Commit other)
30 throw new NotImplementedException();