您的位置:首页 > 编程语言

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

2020-03-25 18:05 1386 查看

-- 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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐