class Github::Orgs::Teams

def remove_repo(team_id, user_name, repo_name, params={})


github.orgs.teams.remove_repo 'team-id', 'user-name', 'repo-name'
github = Github.new :oauth_token => '...'
= Examples

note: This does not delete the repo, it just removes it from the team.
an owner of the org that the team is associated with.
In order to add a repo to a team, the authenticated user must be

Remove a team repository
def remove_repo(team_id, user_name, repo_name, params={})
  _validate_presence_of team_id, user_name, repo_name
  normalize! params
  delete_request("/teams/#{team_id}/repos/#{user_name}/#{repo_name}", params)
end