码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-03-25 18:47:35      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:comm   step   pre   remove   tor   com   for   content   current   

-- 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 仓库,而不是删除重新创建.

标签:comm   step   pre   remove   tor   com   for   content   current   

原文地址:https://www.cnblogs.com/guangzan/p/12567819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!