AddMostRecentRepository() public method

public AddMostRecentRepository ( string repo ) : void
repo string
return void
Example #1
0
 public static void AddMostRecentRepository(string repo)
 {
     if (Repository.PathIsUrl(repo))
     {
         RemoteRepositoryHistory.AddMostRecentRepository(repo);
     }
     else
     {
         RepositoryHistory.AddMostRecentRepository(repo);
         AssignRepositoryHistoryFromCategories(repo);
     }
 }