Categorygithub.com/TBXark/gitea-mirror-reauth
repositorypackage
0.0.0-20240511055629-fd9fd9a6e977
Repository: https://github.com/tbxark/gitea-mirror-reauth.git
Documentation: pkg.go.dev

# README

gitea-mirror-reauth

As Gitea does not provide a simple way to modify the authorization information of mirrored repositories, I wrote this tool to solve this problem.

Installation

go install github.com/TBXark/gitea-mirror-reauth@latest

Usage

gitea-mirror-reauth
expected 'preview', 'auto-replace' or 'token-replace' subcommands
Usage:
  preview       preview all gitea repositories
  auto-replace  auto replace gitea repositories token by config
  token-replace replace gitea repositories token manually

preview

Check all the repositories in gitea-repositories and output the repository information

Usage of preview:
  -gitea-dir string
        gitea repositories dir (default "/home/git/data/gitea-repositories")
  -help
        help

auto-replace

Replace the token in the repository according to the configuration file

Usage of auto-replace:
  -config string
        config file path
  -confirm
        confirm
  -gitea-dir string
        gitea repositories dir (default "/home/git/data/gitea-repositories")
  -help
        help

Configuration file is json format, key is regular expression, value is new token.

{
  "regex": "NEW_TOKEN",
  "tbxark/private_repo_name": "NEW_PRIVATE_SCOPE_TOKEN",
  "tbxark/.*": "NEW_PUBLIC_SCOPE_TOKEN"
}

token-replace

Find all the tokens in the repository and replace them

Usage of token-replace:
  -gitea-dir string
        gitea repositories dir (default "/home/git/data/gitea-repositories")
  -help
        help

License

gitea-mirror-reauth is released under the MIT license. See LICENSE for details.