Files
git-tfs/GitTfs/Core/LogEntry.cs
T
Gordon Burgett c696499dfb Subtree remote's git-tfs ID is now applied when pulling new changesets, TfsWriter now handles determining whether to write with subtree or its owner.
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>
2013-06-05 14:02:57 -05:00

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; }
}
}