6 public abstract class Treeish
8 public abstract string ID { get; }
9 public abstract string Name { get; }
11 protected string m_path
;
13 public Treeish(string path
)
18 public virtual bool Verify()
20 Executioner e
= Executioner
.GetExecutioner(m_path
, false);
21 return 0 == e
.Execute("git-rev-parse", "--verify " + ID
);