How to delete all commit history in Github | using Windows PowerShell or Github desktop to clean

preview_player
Показать описание
Can you help me to buy a coffee:

git checkout --orphan latest_branch

Add all the files

git add -A

Commit the changes

git commit -am "commit message"

Delete the branch

git branch -D main

Rename the current branch to main

git branch -m main

Finally, force update your repository

git push -f origin main
Рекомендации по теме
Комментарии
Автор

Thank you. This is very useful and informative.

vinodpasi