/// <summary> /// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization. /// </summary> /// <remarks> /// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information. /// </remarks> /// <param name="owner">The owner of the repository</param> /// <param name="name">The name of the repository</param> /// <param name="fork">Used to fork a repository</param> public Task <Repository> Create(string owner, string name, NewRepositoryFork fork) { Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner)); Ensure.ArgumentNotNullOrEmptyString(name, nameof(name)); Ensure.ArgumentNotNull(fork, nameof(fork)); return(ApiConnection.Post <Repository>(ApiUrls.RepositoryForks(owner, name), fork)); }
/// <summary> /// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization. /// </summary> /// <remarks>See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information.</remarks> /// <returns></returns> public Task<Repository> Create(string owner, string repositoryName, NewRepositoryFork fork) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName"); Ensure.ArgumentNotNull(fork, "fork"); return ApiConnection.Post<Repository>(ApiUrls.RepositoryForks(owner, repositoryName), fork); }
/// <summary> /// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization. /// </summary> /// <remarks>See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information.</remarks> /// <returns></returns> public Task <Repository> Create(string owner, string repositoryName, NewRepositoryFork fork) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName"); Ensure.ArgumentNotNull(fork, "fork"); return(ApiConnection.Post <Repository>(ApiUrls.RepositoryForks(owner, repositoryName), fork)); }
/// <summary> /// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization. /// </summary> /// <remarks> /// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information. /// </remarks> /// <param name="repositoryId">The Id of the repository</param> /// <param name="fork">Used to fork a repository</param> public Task <Repository> Create(long repositoryId, NewRepositoryFork fork) { Ensure.ArgumentNotNull(fork, nameof(fork)); return(ApiConnection.Post <Repository>(ApiUrls.RepositoryForks(repositoryId), fork)); }
/// <summary> /// Creates a fork for a repository. Specify organization in the fork parameter to create for an organization. /// </summary> /// <remarks> /// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information. /// </remarks> /// <param name="repositoryId">The Id of the repository</param> /// <param name="fork">Used to fork a repository</param> public Task<Repository> Create(int repositoryId, NewRepositoryFork fork) { Ensure.ArgumentNotNull(fork, "fork"); return ApiConnection.Post<Repository>(ApiUrls.RepositoryForks(repositoryId), fork); }