Github 仓库迁移至 Gitea 脚本
- 更新:2020-07-21 15:02:09
- 首发:2019-06-12 08:38:10
- 源代码
- 7955
迁移 github
私有/公有仓库到 gitea
是一件容易的事情,不过由于网络原因,部分较大的项目可能会失败。此脚本会自动过滤已经迁移完成的仓库,因此重复执行脚本直至 gitea
中的仓库和 github
中的仓库数量一致,即表示迁移完成。gitea
迁移失败的仓库会被系统自动删除,因此可能出现仓库数量浮动。为了确保代码资产安全,您在迁移完成后应该间隔十分钟再次执行,直到 gitea
中的仓库和 github
中的仓库数量仍然一致。
需要注意,使用该脚本前,需创建一个Github Token,并且需要临时关闭Two-factor authentication
。
Python3:
import requests
from requests.adapters import HTTPAdapter
import time
import json
GITEA_URL = 'https://domain'
GITEA_USERNAME = 'username'
GITEA_PASSWORD = '***'
GITEA_ORGNAME_OR_USERNAME = 'orgName'
GITHUB_ORGNAME = 'orgName'
GITHUB_TOKEN = '***************************************'
GITHUB_USERNAME = 'yi-ge'
GITHUB_PASSWORD = '***'
finishedRepo = json.load(open('finishedRepo.json', 'r'))
# Get user Gitea
response_user = requests.get(
f'{GITEA_URL}/api/v1/users/{GITEA_ORGNAME_OR_USERNAME}')
verify = False
if response_user.status_code == 200:
uid = response_user.json()['id']
for n in range(1000):
page = n + 1
n = page
response_github = requests.get(
f'https://api.github.com/orgs/{GITHUB_ORGNAME}/repos?' +
f'per_page=100&page={page}',
headers={'Authorization': 'token ' + GITHUB_TOKEN})
# List Github repos
if response_github.status_code == 200:
if len(response_github.json()):
for repo in response_github.json():
repo_clone_url = repo['clone_url']
repo_name = repo['name']
description = repo['description']
print('Creating repository: ' + repo_name)
print(repo_clone_url)
s = requests.Session()
s.mount('http://', HTTPAdapter(max_retries=3))
s.mount('https://', HTTPAdapter(max_retries=3))
response_migrate = s.post(
f'{GITEA_URL}/api/v1/repos/migrate',
json={
'clone_addr': repo_clone_url.replace(
'https://github.com',
f'https://{GITHUB_USERNAME}:' +
GITEA_PASSWORD +
'@github.com'),
'mirror': False,
'private': True,
"issues": True,
"labels": True,
"milestones": True,
"pull_requests": True,
"releases": True,
"wiki": True,
'repo_name': repo_name,
'uid': uid,
'description': description
},
auth=(GITEA_USERNAME, GITEA_PASSWORD),
timeout=120
)
if (response_migrate.status_code == 409
or response_migrate.json()['id'] > 0):
finishedRepo.append({
'name': repo_clone_url,
'time': time.strftime(
'%Y-%m-%d %H:%M:%S',
time.localtime()
),
'created':
response_migrate.status_code == 409
})
open('finishedRepo.json', 'w').write(
json.dumps(finishedRepo))
if (response_migrate.status_code == 409):
print(
repo_name +
': The repository already exists.'
)
else:
print(
repo_name +
': Clone repository created!'
)
# time.sleep(8)
else:
print(repo_name + ': Clone repository error!')
print(response_migrate.json())
else:
if verify:
print('All clone finished!')
else:
page = 1
verify = True
else:
print(response_github.status_code)
print('Error list Github repos.')
else:
print('Error user Gitea.')
除特别注明外,本站所有文章均为原创。原创文章均已备案且受著作权保护,未经作者书面授权,请勿转载。
打赏
交流区
暂无内容
老师你好,我希望能用一个openwrt路由器实现IPv4和IPv6的桥接,请问我该如何实现?我尝试了直接新增dhcpv6的接口,但是效果不甚理想(无法成功获取公网的ipv6,但是直连上级路由的其他设备是可以获取公网的ipv6地)
![%E5%B1%8F%E5%B9%95%E6%88%AA%E5%9B%BE20241205230845.png](https://cdn.wyr.me/visitor-files/2024-12-05/1733411344287屏幕截图 2024-12-05 230845.png)你好
,为什么我这里是0039 813C 0600 0075 16xx xx xx,只有前6组是相同的,博客中要前8位相同,这个不同能不能照着修改呢?我系统版本是Win1124H2
大神你好,win11专业版24h2最新版26100.2033,文件如何修改?谢谢
win11专业版24h2最新版26100.2033,Windows Feature Experience Pack 1000.26100.23.0。C:\Windows\System32\termsrv.dll系统自带的这个文件,39 81 3C 06 00 00 0F 85 XX XX XX XX 替换为 B8 00 01 00 00 89 81 38 06 00 00 90。仍然无法远程连接。原来是win11 21h2系统,是可以远程链接的。共享1个主机,2个显示器,2套键鼠,各自独立操作 各自不同的账号,不同的桌面环境。
博主,win11专业版24h2最新版,C:\Windows\System32\termsrv.dll系统自带的这个文件,找不到应该修改哪个字段。我的微信:一三五73二五九五00,谢谢