Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }