Esempio n. 1
0
 /// <summary>
 /// Probes for a git repository and if one is found, returns a normalized GitHub uri
 /// <see cref="UriString"/> for the repository's remote named "origin" if one is found
 /// </summary>
 /// <remarks>
 /// The lookup checks to see if the path specified by the RepositoryPath property of the specified
 /// <see cref="repoInfo"/> is a repository. If it's not, it then walks up the parent directories until it
 /// either finds a repository, or reaches the root disk.
 /// </remarks>
 /// <param name="repoInfo">The repository information containing the path to start probing</param>
 /// <returns>Returns a <see cref="UriString"/> representing the uri of the "origin" remote normalized to a GitHub repository url or null if none found.</returns>
 public static UriString GetUriFromVSGit(IGitRepositoryInfo repoInfo)
 {
     return(GitServiceHelper.GetUri(repoInfo));
 }
Esempio n. 2
0
 /// <summary>
 /// Probes for a git repository and if one is found, returns a normalized GitHub uri <see cref="UriString"/>
 /// for the repository's remote named "origin" if one is found
 /// </summary>
 /// <remarks>
 /// The lookup checks to see if the specified <paramref name="path"/> is a repository. If it's not, it then
 /// walks up the parent directories until it either finds a repository, or reaches the root disk.
 /// </remarks>
 /// <param name="path">The path to start probing</param>
 /// <returns>Returns a <see cref="UriString"/> representing the uri of the "origin" remote normalized to a GitHub repository url or null if none found.</returns>
 public static UriString GetUriFromPath(string path)
 {
     return(GitServiceHelper.GetUri(path));
 }
Esempio n. 3
0
 /// <summary>
 /// Probes for a git repository and if one is found, returns a <see cref="IRepository"/> instance for the
 /// repository.
 /// </summary>
 /// <remarks>
 /// The lookup checks to see if the specified <paramref name="path"/> is a repository. If it's not, it then
 /// walks up the parent directories until it either finds a repository, or reaches the root disk.
 /// </remarks>
 /// <param name="path">The path to start probing</param>
 /// <returns>An instance of <see cref="IRepository"/> or null</returns>
 public static IRepository GetRepoFromPath(string path)
 {
     return(GitServiceHelper.GetRepo(path));
 }
Esempio n. 4
0
 /// <summary>
 /// Returns a <see cref="UriString"/> representing the uri of the "origin" remote normalized to a GitHub repository url or null if none found.
 /// </summary>
 /// <param name="repository"></param>
 /// <returns>Returns a <see cref="UriString"/> representing the uri of the "origin" remote normalized to a GitHub repository url or null if none found.</returns>
 public static UriString GetGitHubUri(IRepository repository)
 {
     return(GitServiceHelper.GetUri(repository));
 }
Esempio n. 5
0
 /// <summary>
 /// Probes for a git repository and if one is found, returns a <see cref="IRepository"/> instance for the
 /// repository.
 /// </summary>
 /// <remarks>
 /// The lookup checks to see if the path specified by the RepositoryPath property of the specified
 /// <see cref="repoInfo"/> is a repository. If it's not, it then walks up the parent directories until it
 /// either finds a repository, or reaches the root disk.
 /// </remarks>
 /// <param name="repoInfo">The repository information containing the path to start probing</param>
 /// <returns>An instance of <see cref="IRepository"/> or null</returns>
 public static IRepository GetRepoFromVSGit(IGitRepositoryInfo repoInfo)
 {
     return(GitServiceHelper.GetRepo(repoInfo));
 }