reset history of a git repository 重置 git
2020 Aug 29 未分類
參考來源 https://gist.github.com/stephenhardy/5470814 有時候把 git 搞爛了 或是有太多歷史包袱(?) 想把儲藏庫的東西清掉 可以用以下指令 -- 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
0則留言