-
Notifications
You must be signed in to change notification settings - Fork 0
IFakerGit
baileydauterman edited this page Jan 6, 2025
·
2 revisions
using Faker.NET.Common;
namespace Faker.NET.Interfaces.Modules;
public interface IFakerGit
{
public string Branch();
public string CommitDate();
public string CommitEntry(LineEnding eol = LineEnding.LF, bool isMergeCommit = false);
public string CommitMessage();
public string CommitSha(int length = 40);
}