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

Опубликовано: 30 Декабрь 2022
на канале: Coffee Programmer
3,860
32

Can you help me to buy a coffee:
https://www.buymeacoffee.com/coffeepr... Checkout

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