Inheritance: Object
Ejemplo n.º 1
0
 // TODO: add a real encoding
 public Tag(string tag, User tagger, string message, Commit commit)
     : base(Type.Tag, Encoding.UTF8.GetBytes (tag))
 {
     this.tag = tag;
     this.tagger = tagger;
     this.message = message;
     this.commit = commit;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Get a commit and from there start the checkout
 /// </summary>
 /// <param name="gitDir">
 /// A <see cref="System.String"/>
 /// </param>
 /// <param name="commit">
 /// A <see cref="Commit"/>
 /// </param>
 public void Checkout(string baseDir, Commit commit)
 {
     throw new NotImplementedException ("This is not yet implemented");
 }