You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fork.go 350B

123456789101112
  1. // Copyright 2016 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. // CreateForkOption options for creating a fork
  5. type CreateForkOption struct {
  6. // organization name, if forking into an organization
  7. Organization *string `json:"organization"`
  8. // name of the forked repository
  9. Name *string `json:"name"`
  10. }