How to Delete Commit History in Github
git checkout --orphan temp_branchgit add -A git commit -am "the first commit"git branch -D mastergit branch -m mastergit push -f origin master
Last updated
git checkout --orphan temp_branchgit add -A
git commit -am "the first commit"git branch -D mastergit branch -m mastergit push -f origin masterLast updated