Example #1
0
		public Tag (string tag, User tagger, string message, Commit commit) : base (Type.Tag, Encoding.UTF8.GetBytes (tag)) // TODO: add a real encoding
		{
			this.tag = tag;
			this.tagger = tagger;
			this.message = message;
			this.commit = commit;
		}
		/// <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");
		}