// Copyright 2016 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package structs // CreateForkOption options for creating a fork type CreateForkOption struct { // organization name, if forking into an organization Organization *string `json:"organization"` // name of the forked repository Name *string `json:"name"` // set the target fork as the parent of the source repository Reparent bool `json:"reparent"` }