Пример #1
0
 private SignatureDate GetCreationInfo(string repositoryPath, string repositoryName)
 {
     return(SignatureDate.Parse(GitConfig.GetValue(repositoryPath, $"branch.{repositoryName}.createdDateTime"), CultureInfo.GetCultureInfo("en-US")));
 }
Пример #2
0
 private string GetDescription(string repositoryPath, string repositoryName)
 {
     return(GitConfig.GetValue(repositoryPath, $"branch.{repositoryName}.description"));
 }
Пример #3
0
 private Guid GetID(string repositoryPath, string repositoryName)
 {
     return(Guid.Parse(GitConfig.GetValue(repositoryPath, $"branch.{repositoryName}.id")));
 }