github清空操作

Posted 代码当酒喝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github清空操作相关的知识,希望对你有一定的参考价值。

今天由于想清空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:/.git
git push -u --force origin master

以上是关于github清空操作的主要内容,如果未能解决你的问题,请参考以下文章

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

将本地文件传输到GitHub

Atom 清空残余数据

Android中顺转跳/逆返回到多个Activity+栈(附含GitHub源代码下载)

C语言实现双向非循环链表的清空

如何删除或替换 github 中的 master 分支?