Tentacat v1.2.0 Tentacat.Repositories.Forks

Summary

Functions

Creates a new fork of a repository

List forks of a repository

Functions

create(client \\ %Client{}, owner, repo, body)

Specs

create(Tentacat.Client.t, binary, binary, list | map) :: Tentacat.response

Creates a new fork of a repository

Example

Tentacat.Repositories.Forks.create "elixir-lang", "elixir", "tinfoil", %{}
Tentacat.Repositories.Forks.create "elixir-lang", "elixir", "tinfoil", %{organization: "tinfoil"}

More info at: https://developer.github.com/v3/repos/forks/#create-a-fork

list(client \\ %Client{}, owner, repo)

Specs

list(Tentacat.Client.t, binary, binary) :: Tentacat.response

List forks of a repository

Example

Tentacat.Repositories.Forks.list "elixir-lang", "elixir"

More info at: https://developer.github.com/v3/repos/forks/