cat .git/config # note <github-uri>
rm -rf .git
git init
git branch -M main # 修改分支,可设置默认分支为 main: git config --global init.defaultBranch main
git add .
git commit -m "Initial commit"
git remote add origin git@github.com:netnr/proxy.git # 改成自己对应的仓库
git push -u --force origin main