class Github::Repos::Forks
def create(user_name, repo_name, params={})
"org" => "github"
github.repos.forks.create 'user-name', 'repo-name',
github = Github.new
= Examples
* :org - Optional string - the name of the service that is being called.
= Inputs
Create a fork for the authenticated user
def create(user_name, repo_name, params={}) _update_user_repo_params(user_name, repo_name) _validate_user_repo_params(user, repo) unless user? && repo? _normalize_params_keys(params) _filter_params_keys(%w[ org ], params) post_request("/repos/#{user}/#{repo}/forks", params) end