There was an error while loading. Please reload this page.
For example if you accidentally committed a ton of .zip files you can remove them from GitHub with the following command.
.zip
git rm --cached **/*.zip
Move your commits to a new branch
git switch -c my-temporary-work
Switch to the main branch
git switch main
Merge your commits from the temporary branch with the main branch
git merge my-temporary-work
Delete temporary branch
git branch -d my-temporary-work
Docs moved to https://github.com/CSharpGodotTools/Template/tree/main/docs