c696499dfb
This facilitates using git-tfs after having performed a subtree-split. In the subtree's artificial revision history, the owner's git-tfs ID will not be present, so the TfsWriter will proceed as though the subtree remote were a normal remote. Signed-off-by: Gordon Burgett <gordon.burgett@gmail.com>
33 lines
705 B
C#
33 lines
705 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public class LogEntry
|
|
{
|
|
public LogEntry()
|
|
{
|
|
CommitParents = new List<string>();
|
|
}
|
|
|
|
public string AuthorName { get; set; }
|
|
public string Tree { get; set; }
|
|
|
|
public IList<string> CommitParents { get; private set; }
|
|
|
|
public long ChangesetId { get; set; }
|
|
|
|
public string Log { get; set; }
|
|
|
|
public string AuthorEmail { get; set; }
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
public string CommitterName { get; set; }
|
|
|
|
public string CommitterEmail { get; set; }
|
|
|
|
public IGitTfsRemote Remote { get; set; }
|
|
}
|
|
}
|