ytgui / temp

0 stars 0 forks source link

repo cleanup #69

Closed ytgui closed 5 years ago

ytgui commented 5 years ago

https://tecadmin.net/delete-commit-history-in-github/

ytgui commented 5 years ago
git checkout --orphan temp_branch
git add -A
git commit -am "the first commit"
git branch -D master
git branch -m master
git push -f origin master
ytgui commented 5 years ago