git checkout --orphan <branch-name>
git rm -rf .
touch .gitignore
git add .gitignore
git commit -m 'chore: init commit'
git push --force
通过设置 `--orphan` 参数创建空分支
git checkout --orphan <branch-name>
git rm -rf .
touch .gitignore
git add .gitignore
git commit -m 'chore: init commit'
git push --force