File size: 581 Bytes
38e2b20 | 1 2 3 4 5 6 7 8 9 10 11 | # 跳过 Git 安装检查,直接执行
git init
git remote add origin https://huggingface.co/spaces/xTuS/My_MC_Bot
git add .
git commit -m "Initial commit: NoneBot with adapter-qq"
Write-Host "`n[重要] 接下来将执行 push 操作。`n当提示输入 Username 时,输入你的 Hugging Face 用户名。`n当提示输入 Password 时,请粘贴你的 Access Token (具有 Write 权限)。" -ForegroundColor Cyan
Write-Host "如果你还没有 Token,请先去这里生成: https://huggingface.co/settings/tokens`n" -ForegroundColor Yellow
git push -f origin master:main
|