text 清除git / github存储库历史的步骤

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 清除git / 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

以上是关于text 清除git / github存储库历史的步骤的主要内容,如果未能解决你的问题,请参考以下文章

Git本地存储库提交导出

彻底清除git所有历史提交记录使其为“新”库

从 git/GitHub 的历史记录中删除文件夹及其内容

如何将包含所有分支的 Git 存储库从 Bitbucket 移动到 GitHub?

Github清除历史提交,保留最新提交

修改GIT已提交的用户名和邮箱