清空 github 仓库,而不是删除重新创建.

Posted guangzan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清空 github 仓库,而不是删除重新创建.相关的知识,希望对你有一定的参考价值。

-- Remove the history from

rm -rf .git

-- recreate the repos from the current content only

git init
git add .
git commit -m "Initial commit"

-- push to the github remote repos ensuring you overwrite history

git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git
git push -u --force origin master

来源: https://gist.github.com/stephenhardy/5470814

以上是关于清空 github 仓库,而不是删除重新创建.的主要内容,如果未能解决你的问题,请参考以下文章

github清空操作

创建github仓库的gh-pages分支

github 创建网络仓库 ,使用git工具将本地文件上传/删除 --- 心得

如何删除GitHub仓库中的文件夹和文件

GitHub下月起将使用“main”取代“master”术语

git怎么把仓库的东西删除