You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use to following code to track the latest change for a special file. But I found some file can't be tracked while the others can be tracked correctly.
var latestCommitLog = repository.Commits.QueryBy(file);
if (latestCommitLog.Count() > 0)
{
var latestCommit = latestCommitLog.First().Commit;
}
else
{
// no history
// some file has be pushed to repository but can't be tracked.
}
The text was updated successfully, but these errors were encountered:
I use to following code to track the latest change for a special file. But I found some file can't be tracked while the others can be tracked correctly.
The text was updated successfully, but these errors were encountered: